Skip to main content

Model mixin that ensures there is only one active model instance in your database.

Project description

#django-singleactiveobject

Model mixin that ensures there is only one active model instance in your database.

## What is this app good for?
This might come in handy if you store some sort of configuration in your database
but want to be sure there is only one active entry at a time.

## How it works

Upon save() this will check if the current object is active=True and will set
any other active object to active=False ensuring there is only one active.

## Download/Install

### using pip

pip install django-singleactiveobject

### github

git clone https://github.com/byteweaver/django-singleactiveobject

## Usage

```python
from singleactiveobject.models import SingleActiveObjectMixin

class YourModel(SingleActiveObjectMixin):
...your stuff
```

## Testing

Just run the makefile to set up a virtual environment for testing

make

Start the test runner

make test

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-singleactiveobject-0.9.1.tar.gz (3.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page