django-flows
django-flows copied to clipboard
django-flows keeps state and position in complicated flows of logic, allowing optional branches and complicated paths through a series of individual user actions.
There is a small typo in flows/handler.py. Should read `trying` rather than `tring`.
There is an import error when I try to import `flows.handler`. It looks like `handler.py` it is trying to import a name that does not exist. ``` Python 2.7.11 (default,...
``` python def setup(): self = sys.modules[__name__] self.state_store = _get_state_store() ``` Fails to instantiate state_store in some cases, resulting in failure in a clean installation on 2.7, Django 1.6. with...
Provide step by step guide to setup the project.
I'm seeing an issue when SESSION_SAVE_EVERY_REQUEST isn't set to True. The actual crash point is [here in handler.py](https://github.com/carlio/django-flows/blob/master/flows/handler.py#L135) but the error happens in binder [here](https://github.com/carlio/django-flows/blob/master/flows/binder.py#L7). More details can be found...