django_xworkflows icon indicating copy to clipboard operation
django_xworkflows copied to clipboard

Library to plug xworkflows into django models.

Results 8 django_xworkflows issues
Sort by recently updated
recently updated
newest added

Hello! 😄 first of all thanks for the library, it's so useful for my team! I'd like to ask if there's any plan to support **Django 4.x** in a new...

related to https://github.com/rbarrois/django_xworkflows/pull/26/files

Bug

Hello, Great app ... thanks ! I'm looking for a way to have workflow "instance based". I have multiple instance of my model, say InstA and InstB, and I would...

Feature

Command can be run as: ``` shell python manage.py graph_transitions path.to.models -o png > modelgraph.png ``` Adds a dependency to graphviz, that can be mitigated to an optional in settings.py...

ahoi, maybe you are interessted in this management command. it helps me alot to understand the available transitions between states and what hooks are defined. Example usage: ``` shell $...

I would like to save a record in the TransitionLog when the instance is initially created; conceptually when `initial_state` is assigned I wonder which is the cleanest approach, and most...

Hello @rbarrois , this is exactly the support I've always dreamed of for managing workflows in a Django project. Thank you. I failed to use `GenericTransitionLog()` as my Models use...