River is an open source workflow framework for Django
which support on
the fly changes instead of hardcoding states, transitions and authorization rules.
The main goal of developing this framework is to be able to edit any workflow item on the fly. This means that all the elements in a workflow like states, transitions or authorizations rules are editable at any time so that no changes requires a re-deploying of your application anymore.
Playground: There is a fake jira example repository as a playground of django-river. https://github.com/javrasya/fakejira
Online documentation is available at http://django-river.rtfd.org/.
- Python (
2.7
,3.4
,3.5
,3.6
) - Django (
1.7
,1.8
,1.9
,1.10
,1.11
,2.0
,2.1
) Django
>= 2.0 is supported forPython
>= 3.5Django
== 1.7 is only supported forPython
== 2.7 andPython
== 3.4
Install and enable it
pip install django-river
INSTALLED_APPS=[ ... river ... ]
Create your first state machine in your model and migrate your db
from django.db import models from river.models.fields.state import StateField class MyModel(models.Model): my_state_field = StateField()
Create your states as one of them will be your initial state on the admin page
Create your transition approval metadata with your model (
MyModel
-my_state_field
) information and authorization rules along with their priority on the admin pageEnjoy your
django-river
journey.my_model=MyModel.objects.get(....) my_model.river.my_state_field.approve(as_user=transactioner_user) my_model.river.my_state_field.approve(as_user=transactioner_user,next_state=State.objects.get(label='re-opened')) # and much more. Check the documentation
Note
Whenever a model object is saved, it's state field will be initialized with the
state is given at step-3 above by django-river
.
Note
Make sure that there is only one initial state defined in your workflow, so that django-river
can pick that one automatically
when a model object is created. All other workflow items will be managed by django-river
after object creations.
Contributions are welcome! Please join making always totally free django-river
better.