Integrate django-fsm state transitions into the django admin
Project description
Mixin and template tags to integrate django-fsm state transitions into the Django Admin.
Installation
$ pip install django-fsm-admin
Or from GitHub:
$ pip install -e git://github.com/gadventures/django-fsm-admin.git#egg=django-fsm-admin
Usage
Add fsm_admin to your INSTALLED_APPS.
Ensure that you have "django.core.context_processors.request" in your TEMPLATE_CONTEXT_PROCESSORS in Django settings. If the setting variable is not yet defined, add:
from django.conf import settings
TEMPLATE_CONTEXT_PROCESSORS = settings.TEMPLATE_CONTEXT_PROCESSORS + (
"django.core.context_processors.request",
)
In your admin.py file, use FSMTransitionMixin to add behaviour to your ModelAdmin. FSMTransitionMixin should be before ModelAdmin, the order is important.
It assumes that your workflow state field is named state, however you can override it or add additional workflow state fields with the attribute fsm_field.
from fsm_admin.mixins import FSMTransitionMixin
class YourModelAdmin(FSMTransitionMixin, admin.ModelAdmin):
# The name of one or more FSMFields on the model to transition
fsm_field = ['wf_state',]
admin.site.register(YourModel, YourModelAdmin)
By adding custom=dict(admin=False) to the transition decorator, one can disallow a transition to show up in the admin interface. This specially is useful, if the transition method accepts parameters without default values, since in django-fsm-admin no arguments can be passed into the transition method.
@transition(
field='state',
source=['startstate'],
target='finalstate',
custom=dict(admin=False),
)
def do_something(self, param):
# will not add a button "Do Something" to your admin model interface
By adding FSM_ADMIN_FORCE_PERMIT = True to your configuration settings, the above restriction becomes the default. Then one must explicitly allow that a transition method shows up in the admin interface.
@transition(
field='state',
source=['startstate'],
target='finalstate',
custom=dict(admin=True),
)
def proceed(self):
# will add a button "Proceed" to your admin model interface
This is useful, if most of your state transitions are handled by other means, such as external events communicating with the API of your application.
Try the example
$ git clone git@github.com:gadventures/django-fsm-admin.git
$ cd django-fsm-admin
$ mkvirtualenv fsm_admin
$ pip install -r requirements.txt
$ python setup.py develop
$ cd example
$ python manage.py syncdb
$ python manage.py runserver
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django_fsm_admin_v4-1.2.5.tar.gz
.
File metadata
- Download URL: django_fsm_admin_v4-1.2.5.tar.gz
- Upload date:
- Size: 11.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b286d919b53816513747f226835e3cbfa537c41eded3ffcdb4c4cda54a1a9da2 |
|
MD5 | e640e04df1f12dc8dda3e4e602f77e7a |
|
BLAKE2b-256 | 0c30bcaac284e129dbd124f977f00748e2cac579de5742e58a72c2738cc3d66c |
File details
Details for the file django_fsm_admin_v4-1.2.5-py2.py3-none-any.whl
.
File metadata
- Download URL: django_fsm_admin_v4-1.2.5-py2.py3-none-any.whl
- Upload date:
- Size: 17.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b1180be9b297b7cb43a8d7741e325b1eba256492c0d6c31c0381b0f9b8e4dcc3 |
|
MD5 | 874d5e4e7913d883a95ff579a9b68328 |
|
BLAKE2b-256 | 84e3cf1721ba1d03fc780776404683fc9769c26642ed129516923bc9e56fe30c |