A Django app to integrate django-fsm to wagtail admin.
Project description
Mixin to integrate django-fsm state transitions into the Wagtail Admin.
Installation
$ pip install django-fsm-wagtail
Or from GitHub:
$ pip install -e git://github.com/abahnihi/django-fsm-wagtail.git#egg=django-fsm-wagtail
Usage
Add fsm_wagtail to your INSTALLED_APPS.
from django.conf import settings
TEMPLATE_CONTEXT_PROCESSORS = settings.TEMPLATE_CONTEXT_PROCESSORS + (
"django.core.context_processors.request",
)
In your admin.py file, use FsmWagtailAdminMixin to add behaviour to your ModelAdmin. You can remove ModelAdmin or FsmWagtailAdminMixin 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_wagtail.admin import FsmWagtailAdminMixin
class YourModelAdmin(FsmWagtailAdminMixin):
# The name of one or more FSMFields on the model to transition
fsm_field = ['wf_state',]
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.
Credits
Special thanks to gadventures for the django-fsm-admin library where we used some of his code in this repo.
0.1.0 (2021-03-03)
First release on PyPI.
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-wagtail-0.1.0.tar.gz
.
File metadata
- Download URL: django-fsm-wagtail-0.1.0.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 944aa020a15a2c856462dbd87882a2eeeedd417703a5a275a3a13f80b3db66df |
|
MD5 | 20c515c90853e5fe2262ec1d0b966830 |
|
BLAKE2b-256 | 8e41f72db7c54230ed0c2bb82c807e011100fee1fa00c45374eb76e8ed62c185 |
File details
Details for the file django_fsm_wagtail-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: django_fsm_wagtail-0.1.0-py3-none-any.whl
- Upload date:
- Size: 8.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d009aabda4a36ea0ffae857bd56bd29907fdc5cb1f7cd39bbce3cb555f0510a |
|
MD5 | 6a58d57dd6183450c996db274961093f |
|
BLAKE2b-256 | 1d2d6d755627fba46192cfe29e142b9e7418254eaffaef0317954b373750956c |