Skip to main content

Integrate django-fsm state transitions into the django admin with django 4 support.

Project description

Mixin and template tags to integrate django-fsm state transitions into the Django Admin.

Note: This is a fork of https://github.com/gadventures/django-fsm-admin which is not maintained anymore. This fork is compatible with Django 4.

Installation

$ pip install django-fsm-admin-maintained

Or from GitHub:

$ pip install -e git://github.com/7tg/django-fsm-admin-maintained.git#egg=django-fsm-admin-maintained

Usage

  1. Add fsm_admin to your INSTALLED_APPS.

  2. 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",
)
  1. 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)
  1. 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-maintained 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:7tg/django-fsm-admin-maintained.git
$ cd django-fsm-admin-maintained
$ mkvirtualenv fsm_admin
$ pip install -r requirements.txt
$ python setup.py develop
$ cd example
$ python manage.py syncdb
$ python manage.py runserver

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-fsm-admin-maintained-1.2.6.tar.gz (11.8 kB view details)

Uploaded Source

File details

Details for the file django-fsm-admin-maintained-1.2.6.tar.gz.

File metadata

File hashes

Hashes for django-fsm-admin-maintained-1.2.6.tar.gz
Algorithm Hash digest
SHA256 417429555975395f4d1fff1ace6d316db5819dadb10815648241669b458ae453
MD5 e0d9e775c75b2b83212b5fddf42d009c
BLAKE2b-256 86340afdc550688ada6a15ae5a17c7ebc304cc55fc0e7b22f33fe769805051e1

See more details on using hashes here.

Supported by

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