Skip to main content
.. _QuickCast: http://quick.as/aq8fogo
.. _django-fsm: https://github.com/kmmbvnr/django-fsm

===============================
django-fsm-admin
===============================

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
-----
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 TEMPLATE_CONTEXT_PROCESSORS is not yet defined, add
::
from django.conf import global_settings

TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + (
'django.core.context_processors.request',
)


3. 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` but 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)

4. 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, some_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 fsm_admin/setup.py develop
$ cd example
$ ./manage.py syncdb
$ ./manage.py runserver

Demo
----
Watch a QuickCast_ of the django-fsm-admin example

.. image:: http://i.imgur.com/IJuE9Sr.png
:width: 728px
:height: 346px
:target: QuickCast_

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-1.2.2.tar.gz (10.2 kB view details)

Uploaded Source

File details

Details for the file django-fsm-admin-1.2.2.tar.gz.

File metadata

File hashes

Hashes for django-fsm-admin-1.2.2.tar.gz
Algorithm Hash digest
SHA256 114892315bd75fb6bf027a53ce9dd0949c35079b28f2bf0830e34893bb9216d7
MD5 9b4eec0a23cc8e378f005ee168caab00
BLAKE2b-256 98c14efc36d00651e7279cbc18b99d36499f435e1d0f2d17a1394a6f7c1efd71

See more details on using hashes here.

Release history Release notifications | RSS feed

1.2.5

1 file

1.2.4

1 file

1.2.3

1 file

This release

1.2.2 This release

1 file

1.2.1

1 file

1.1.1

1 file

1.1.0

1 file

1.0.4

1 file

1.0.3

1 file

1.0.2

1 file

1.0.1

1 file

1.0.0

1 file

0.0.5

1 file

0.0.4

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page