django-viewflow 2.2.6__tar.gz → 2.2.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- django_viewflow-2.2.7/PKG-INFO +300 -0
- django_viewflow-2.2.7/django_viewflow.egg-info/PKG-INFO +300 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/setup.py +3 -1
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/fsm/viewset.py +2 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/viewflow.min.js +24 -24
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/viewflow.min.js.map +1 -1
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/urls/base.py +4 -4
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/views/actions.py +1 -1
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/activation.py +6 -1
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/flow/nodes.py +8 -1
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/flow/views/actions.py +1 -1
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/nodes/if_gate.py +12 -1
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/nodes/join.py +4 -2
- django_viewflow-2.2.6/PKG-INFO +0 -29
- django_viewflow-2.2.6/django_viewflow.egg-info/PKG-INFO +0 -29
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/LICENSE +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/LICENSE_EXCEPTION +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/MANIFEST.in +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/README.md +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/django_viewflow.egg-info/SOURCES.txt +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/django_viewflow.egg-info/dependency_links.txt +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/django_viewflow.egg-info/not-zip-safe +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/django_viewflow.egg-info/requires.txt +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/django_viewflow.egg-info/top_level.txt +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/setup.cfg +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/tests/test_middleware.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/tests/test_templates.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/tests/test_templatetags__viewflow.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/tests/test_this_object.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/tests/test_urls__base.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/tests/test_utils__package.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/__init__.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/apps.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/conf.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/contrib/__init__.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/contrib/admin/__init__.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/contrib/admin/apps.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/contrib/auth.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/contrib/plotly/__init__.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/contrib/plotly/material.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/contrib/plotly/views.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/contrib/plotly/viewset.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/fields.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/forms/__init__.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/forms/renderers.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/fsm/__init__.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/fsm/admin.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/fsm/base.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/fsm/chart.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/fsm/typing.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/fsm/views.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/jsonstore.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/de/LC_MESSAGES/django.mo +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/de/LC_MESSAGES/django.po +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/es/LC_MESSAGES/django.mo +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/es/LC_MESSAGES/django.po +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/fr/LC_MESSAGES/django.mo +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/fr/LC_MESSAGES/django.po +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/it/LC_MESSAGES/django.mo +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/it/LC_MESSAGES/django.po +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/ja/LC_MESSAGES/django.mo +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/ja/LC_MESSAGES/django.po +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/kk/LC_MESSAGES/django.mo +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/kk/LC_MESSAGES/django.po +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/ko/LC_MESSAGES/django.mo +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/ko/LC_MESSAGES/django.po +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/pt/LC_MESSAGES/django.mo +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/pt/LC_MESSAGES/django.po +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/ru/LC_MESSAGES/django.mo +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/ru/LC_MESSAGES/django.po +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/sr/LC_MESSAGES/django.mo +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/sr/LC_MESSAGES/django.po +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/locale/zh_Hans/LC_MESSAGES/django.po +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/management/__init__.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/management/commands/__init__.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/management/commands/flowexport.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/middleware.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/css/perfect-scrollbar.css +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/css/trix.css +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/css/viewflow.min.css +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/css/vis-network.min.css +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/material-icons/material-icons-outlined.woff +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/material-icons/material-icons-outlined.woff2 +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/material-icons/material-icons-round.woff +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/material-icons/material-icons-round.woff2 +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/material-icons/material-icons-sharp.woff +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/material-icons/material-icons-sharp.woff2 +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/material-icons/material-icons-two-tone.woff +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/material-icons/material-icons-two-tone.woff2 +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/material-icons/material-icons.css +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/material-icons/material-icons.woff +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/material-icons/material-icons.woff2 +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-Black.woff +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-Black.woff2 +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-BlackItalic.woff +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-BlackItalic.woff2 +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-Bold.woff +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-Bold.woff2 +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-BoldItalic.woff +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-BoldItalic.woff2 +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-Light.woff +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-Light.woff2 +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-LightItalic.woff +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-LightItalic.woff2 +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-Medium.woff +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-Medium.woff2 +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-MediumItalic.woff +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-MediumItalic.woff2 +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-Regular.woff +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-Regular.woff2 +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-RegularItalic.woff +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-RegularItalic.woff2 +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-Thin.woff +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-Thin.woff2 +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-ThinItalic.woff +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/Roboto-ThinItalic.woff2 +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/roboto/roboto-fontface.css +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/simple-icons/SimpleIcons.eot +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/simple-icons/SimpleIcons.otf +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/simple-icons/SimpleIcons.ttf +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/simple-icons/SimpleIcons.woff +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/simple-icons/SimpleIcons.woff2 +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/simple-icons/simple-icons.css +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/fonts/simple-icons/simple-icons.min.css +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/img/favicon.png +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/img/user.png +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dash-renderer/build/dash_renderer.min.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dash_table/async-export.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dash_table/async-export.js.LICENSE.txt +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dash_table/async-export.js.map +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dash_table/async-highlight.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dash_table/async-highlight.js.map +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dash_table/async-table.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dash_table/async-table.js.LICENSE.txt +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dash_table/async-table.js.map +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dash_table/bundle.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dash_table/bundle.js.map +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/async-datepicker.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/async-datepicker.js.map +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/async-dropdown.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/async-dropdown.js.LICENSE.txt +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/async-dropdown.js.map +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/async-graph.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/async-graph.js.LICENSE.txt +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/async-graph.js.map +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/async-highlight.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/async-highlight.js.map +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/async-markdown.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/async-markdown.js.LICENSE.txt +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/async-markdown.js.map +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/async-plotlyjs.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/async-plotlyjs.js.LICENSE.txt +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/async-slider.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/async-slider.js.LICENSE.txt +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/async-slider.js.map +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/async-upload.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/async-upload.js.map +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/dash_core_components-shared.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/dash_core_components-shared.js.LICENSE.txt +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/dash_core_components-shared.js.map +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/dash_core_components.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/dash_core_components.js.LICENSE.txt +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/dash_core_components.js.map +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/dcc/plotly.min.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/deps/polyfill@7.12.1.min.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/deps/prop-types@15.7.2.min.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/deps/prop-types@15.8.1.min.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/deps/react-dom@16.14.0.min.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/deps/react@16.14.0.min.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/html/dash_html_components.min.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/contrib/dash/html/dash_html_components.min.js.map +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/perfect-scrollbar.min.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/perfect-scrollbar.min.js.map +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/smartcrop.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/trix.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/turbo.es2017-umd.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/vis-network.min.js +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/static/viewflow/js/vis-network.min.js.map +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/400.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/403.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/404.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/500.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/admin/fsm_change_form.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/admin/fsm_change_form_object_tools.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/admin/fsm_change_list.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/admin/fsm_transition_form.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/formtools/wizard/wizard_form.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/registration/logged_out.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/registration/login.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/registration/password_change_done.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/registration/password_change_form.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/registration/password_reset_complete.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/registration/password_reset_confirm.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/registration/password_reset_done.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/registration/password_reset_form.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/registration/profile.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/registration/provider_list.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/base.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/base_lockscreen.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/base_page.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/contrib/import_export/export_action.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/contrib/import_export/import_action.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/contrib/plotly.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/contrib/swagger.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/includes/app_menu.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/includes/list_bulk_actions.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/includes/list_filter.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/includes/list_pagination.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/includes/object_detail_card.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/includes/site_menu.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/includes/snackbar.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/includes/view_action_menu.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/includes/viewflow_css.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/includes/viewflow_js.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/material/circular_progress.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/views/confirm_delete.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/views/delete_action.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/views/detail.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/views/form.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/views/list.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/views/transition.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/assign.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/base_page.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/celery_task_detail.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/flow_menu.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/graph.bpmn +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/graph.svg +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/process_cancel.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/process_dashboard.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/process_data.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/process_detail.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/process_list.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/process_tasks_list.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/start.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/task.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/task_assign.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/task_base.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/task_cancel.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/task_data.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/task_detail.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/task_list.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/task_revive.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/task_unassign.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/task_undo.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/tasks_assign.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/tasks_unassign.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/workflow_menu.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templates/viewflow/workflow/workflow_tasks_list.html +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templatetags/__init__.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templatetags/fsm.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templatetags/viewflow.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/templatetags/workflow.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/this_object.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/urls/__init__.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/urls/model.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/urls/sites.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/utils.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/views/__init__.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/views/base.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/views/create.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/views/delete.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/views/detail.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/views/filters.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/views/list.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/views/search.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/views/update.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/__init__.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/admin.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/apps.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/base.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/chart.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/context.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/exceptions.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/fields.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/flow/__init__.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/flow/mixins.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/flow/utils.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/flow/views/__init__.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/flow/views/chart.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/flow/views/create.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/flow/views/dashboard.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/flow/views/detail.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/flow/views/filters.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/flow/views/list.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/flow/views/mixins.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/flow/views/update.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/flow/viewset.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/lock.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/managers.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/migrations/0001_initial.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/migrations/0002_fsmchange.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/migrations/0003_task_owner_permission_change.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/migrations/0004_extend_fields_length.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/migrations/0004_subprocess.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/migrations/0005_merge.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/migrations/0005_rename_flowcls.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/migrations/0006_i18n.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/migrations/0006_merge.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/migrations/0007_owner_permission_obj.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/migrations/0007_task_assigned.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/migrations/0008_jsonfield_and_artifact.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/migrations/0008_merge.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/migrations/0009_merge.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/migrations/0010_viewflow20.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/migrations/0011_alter_task_created_and_more.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/migrations/0012_alter_process_data_alter_task_data.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/migrations/0013_process_seed_content_type_process_seed_object_id_and_more.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/migrations/0014_alter_process_parent_task.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/migrations/__init__.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/models.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/nodes/__init__.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/nodes/end.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/nodes/func.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/nodes/handle.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/nodes/job.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/nodes/mixins.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/nodes/obsolete.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/nodes/split.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/nodes/start.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/nodes/switch.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/nodes/view.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/signals.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/status.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/token.py +0 -0
- {django_viewflow-2.2.6 → django_viewflow-2.2.7}/viewflow/workflow/utils.py +0 -0
|
@@ -0,0 +1,300 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: django-viewflow
|
|
3
|
+
Version: 2.2.7
|
|
4
|
+
Summary: Reusable library to build business applications fast
|
|
5
|
+
Author: Mikhail Podgurskiy
|
|
6
|
+
Author-email: kmmbvnr@gmail.com
|
|
7
|
+
License: AGPL
|
|
8
|
+
Keywords: django,admin,workflow,fsm,bpm,bpmn
|
|
9
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Natural Language :: English
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Framework :: Django
|
|
14
|
+
Classifier: Framework :: Django :: 4.2
|
|
15
|
+
Classifier: Framework :: Django :: 5.0
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
24
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
25
|
+
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
|
26
|
+
Requires-Python: >=3.8
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
License-File: LICENSE
|
|
29
|
+
Requires-Dist: Django>=4.2
|
|
30
|
+
Requires-Dist: django-filter>=2.3.0
|
|
31
|
+
|
|
32
|
+
# Viewflow
|
|
33
|
+
|
|
34
|
+
**The low-code for developers with yesterday's deadline**
|
|
35
|
+
|
|
36
|
+
[![build]][build] [![coverage]][coverage] [![pypi-version]][pypi] [![py-versions]][pypi]
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
Viewflow is a low-code, reusable component library for creating comprehensive business applications with ease. Built on top of Django, Viewflow simplifies development by providing pre-built components for user management, workflows, and reporting, while still offering flexibility to customize and integrate with existing systems.
|
|
40
|
+
|
|
41
|
+
With Viewflow, you can create full-featured business applications in just a few lines of code using its reusable component library. It's shipped as a single package with batteries included, and each part of Viewflow can be used independently of the others, but they all work well together.
|
|
42
|
+
|
|
43
|
+
GPT assisted with Viewflow documentation: [Viewflow Pair Programming Buddy][gpt]
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
Viewflow comes in two flavors:
|
|
47
|
+
- **Viewflow Core:** A lightweight, open-source library with only non-opinionated core classes that allows you to build your custom solution on top.
|
|
48
|
+
- **Viewflow PRO:** A comprehensive package that includes reference functionality implementation and integrated with third-party Django packages. This package has a commercial-friendly license that allows private forks and modifications of Viewflow.
|
|
49
|
+
|
|
50
|
+
<img src="assets/ShipmentProcess.png" alt="drawing" width="600"/>
|
|
51
|
+
|
|
52
|
+
## Features
|
|
53
|
+
|
|
54
|
+
- Modern, responsive user interface with an SPA-style look and feel
|
|
55
|
+
- Reusable workflow library for quick implementation of BPMN workflows
|
|
56
|
+
- Built-in customizable CRUD for managing complex forms and data
|
|
57
|
+
- Integrated reporting dashboard
|
|
58
|
+
- Small and concise API
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
## Installation
|
|
62
|
+
|
|
63
|
+
Viewflow works with Python 3.8 or greater and Django 4.0+
|
|
64
|
+
|
|
65
|
+
Viewflow:
|
|
66
|
+
|
|
67
|
+
pip install django-viewflow
|
|
68
|
+
|
|
69
|
+
Viewflow-PRO:
|
|
70
|
+
|
|
71
|
+
pip install django-viewflow-pro --extra-index-url https://pypi.viewflow.io/<licence_id>/simple/
|
|
72
|
+
|
|
73
|
+
Add 'viewflow' and, in case you need workflow capabilities 'viewflow.workflow' to the INSTALLED_APPS settings.py
|
|
74
|
+
|
|
75
|
+
```python
|
|
76
|
+
INSTALLED_APPS = [
|
|
77
|
+
....
|
|
78
|
+
'viewflow',
|
|
79
|
+
'viewflow.workflow',
|
|
80
|
+
]
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
## Quick start
|
|
85
|
+
|
|
86
|
+
Here's an example of how to create a simple pizza ordering workflow using Viewflow:
|
|
87
|
+
|
|
88
|
+
1. Create a model to store process data
|
|
89
|
+
|
|
90
|
+
Before creating the workflow, you'll need to define a model to store the process
|
|
91
|
+
data. Viewflow provides a Process model as the base model for your process
|
|
92
|
+
instances. You can add your own fields to the model using jsonstore fields to
|
|
93
|
+
avoid model inheritance and additional joins:
|
|
94
|
+
|
|
95
|
+
```python
|
|
96
|
+
|
|
97
|
+
from viewflow import jsonstore
|
|
98
|
+
from viewflow.workflow.models import Process
|
|
99
|
+
|
|
100
|
+
class PizzaOrder(Process):
|
|
101
|
+
customer_name = jsonstore.CharField(max_length=250)
|
|
102
|
+
address = jsonstore.TextField()
|
|
103
|
+
toppings = jsonstore.TextField()
|
|
104
|
+
tips_received = jsonstore.IntegerField(default=0)
|
|
105
|
+
baking_time = jsonstore.IntegerField(default=10)
|
|
106
|
+
|
|
107
|
+
class Meta:
|
|
108
|
+
proxy = True
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
2. Create a new flow definition file flows.py
|
|
112
|
+
|
|
113
|
+
Next, create a new flow definition file *flows.py* and define your workflow. In
|
|
114
|
+
this example, we'll create a PizzaFlow class that inherits from flow.Flow.
|
|
115
|
+
We'll define three steps in the workflow: start, bake, and deliver. We'll
|
|
116
|
+
use CreateProcessView and UpdateProcessView to create and update the process
|
|
117
|
+
data from PizzaOrder:
|
|
118
|
+
|
|
119
|
+
```python
|
|
120
|
+
|
|
121
|
+
from viewflow import this
|
|
122
|
+
from viewflow.workflow import flow
|
|
123
|
+
from viewflow.workflow.flow.views import CreateProcessView, UpdateProcessView
|
|
124
|
+
from .models import PizzaOrder
|
|
125
|
+
|
|
126
|
+
class PizzaFlow(flow.Flow):
|
|
127
|
+
process_class = PizzaOrder
|
|
128
|
+
|
|
129
|
+
start = flow.Start(
|
|
130
|
+
CreateProcessView.as_view(
|
|
131
|
+
fields=["customer_name", "address", "toppings"]
|
|
132
|
+
)
|
|
133
|
+
).Next(this.bake)
|
|
134
|
+
|
|
135
|
+
bake = flow.View(
|
|
136
|
+
UpdateProcessView.as_view(fields=["baking_time"])
|
|
137
|
+
).Next(this.deliver)
|
|
138
|
+
|
|
139
|
+
deliver = flow.View(
|
|
140
|
+
UpdateProcessView.as_view(fields=["tips_received"])
|
|
141
|
+
).Next(this.end)
|
|
142
|
+
|
|
143
|
+
end = flow.End()
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
3. Add the flow to your URL configuration:
|
|
147
|
+
|
|
148
|
+
Finally, add the PizzaFlow to your URL configuration. You can use the Site and
|
|
149
|
+
FlowAppViewset classes to register your workflow with the pre-built frontend.
|
|
150
|
+
|
|
151
|
+
```python
|
|
152
|
+
|
|
153
|
+
from django.urls import path
|
|
154
|
+
from viewflow.contrib.auth import AuthViewset
|
|
155
|
+
from viewflow.urls import Application, Site
|
|
156
|
+
from viewflow.workflow.flow import FlowAppViewset
|
|
157
|
+
from my_pizza.flows import PizzaFlow
|
|
158
|
+
|
|
159
|
+
site = Site(
|
|
160
|
+
title="Pizza Flow Demo",
|
|
161
|
+
viewsets=[
|
|
162
|
+
FlowAppViewset(PizzaFlow, icon="local_pizza"),
|
|
163
|
+
]
|
|
164
|
+
)
|
|
165
|
+
|
|
166
|
+
urlpatterns = [
|
|
167
|
+
path("accounts/", AuthViewset().urls),
|
|
168
|
+
path("", site.urls),
|
|
169
|
+
]
|
|
170
|
+
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
4. Make and run migrations and access the workflow through the pre-built frontend.
|
|
174
|
+
|
|
175
|
+
Make and run migrations to create the necessary database tables, then start your Django
|
|
176
|
+
server and access the workflow through the pre-built frontend. You should be
|
|
177
|
+
able to create and track pizza orders with the workflow.
|
|
178
|
+
|
|
179
|
+
Go to the https://docs.viewflow.io/workflow/writing.html for the next steps
|
|
180
|
+
|
|
181
|
+
## Documentation
|
|
182
|
+
|
|
183
|
+
Viewflow's documentation for the latest version is available at
|
|
184
|
+
http://docs.viewflow.io/
|
|
185
|
+
|
|
186
|
+
Documentarian for Viewflow 1.xx series available at http://v1-docs.viewflow.io
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
## Demo
|
|
190
|
+
|
|
191
|
+
http://demo.viewflow.io/
|
|
192
|
+
|
|
193
|
+
## Cookbook
|
|
194
|
+
|
|
195
|
+
For sample applications and code snippets, check out the Viewflow PRO cookbook at
|
|
196
|
+
|
|
197
|
+
https://github.com/viewflow/cookbook
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
## License
|
|
201
|
+
|
|
202
|
+
Viewflow is an Open Source project licensed under the terms of the AGPL license - [The GNU Affero General Public License v3.0](http://www.gnu.org/licenses/agpl-3.0.html) with the Additional Permissions
|
|
203
|
+
described in [LICENSE_EXCEPTION](./LICENSE_EXCEPTION)
|
|
204
|
+
|
|
205
|
+
The AGPL license with Additional Permissions is a free software license that
|
|
206
|
+
allows commercial use and distribution of the software. It is similar to the GNU
|
|
207
|
+
GCC Runtime Library license, and it includes additional permissions that make it
|
|
208
|
+
more friendly for commercial development.
|
|
209
|
+
|
|
210
|
+
You can read more about AGPL and its compatibility with commercial use at the
|
|
211
|
+
[AGPL FAQ](http://www.affero.org/oagf.html)
|
|
212
|
+
|
|
213
|
+
If you use Linux already, this package license likely won't bring anything new to your stack.
|
|
214
|
+
|
|
215
|
+
Viewflow PRO has a commercial-friendly license allowing private forks and
|
|
216
|
+
modifications of Viewflow. You can find the commercial license terms in
|
|
217
|
+
[COMM-LICENSE](./COMM-LICENSE).
|
|
218
|
+
|
|
219
|
+
## Changelog
|
|
220
|
+
|
|
221
|
+
### 2.2.5 2024-07-17
|
|
222
|
+
|
|
223
|
+
- The 'pattern' widget attribute is now passed to the underlying form input.
|
|
224
|
+
- Fixed issue with flow image reload.
|
|
225
|
+
- Fixed dashboard max height on pages with long sidebars.
|
|
226
|
+
- Added .get_success_url(request) shortcut method to StartViewActivation and
|
|
227
|
+
ViewActivation for convenient use in function-based views.
|
|
228
|
+
- Fixed duplicated task_finished signal on flow.View completion.
|
|
229
|
+
- Enabled callable defaults on jsonstore fields.
|
|
230
|
+
- Improved SVG and BPMN export shapes for SplitFirst and Timer Tasks.
|
|
231
|
+
- Created cookbook demo for common workflow patterns
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
### 2.2.4 2024-07-12
|
|
235
|
+
|
|
236
|
+
- Clone data, seed, and artifacts from canceled tasks to revived tasks.
|
|
237
|
+
- Enhance error handling for celery.Job.
|
|
238
|
+
- Improve the process cancellation template.
|
|
239
|
+
- Redirect to the task detail page after canceling or undoing actions, instead
|
|
240
|
+
of redirecting to the process detail page.
|
|
241
|
+
- Added links to parent subprocess and parent task on the subprocess process and
|
|
242
|
+
task details pages.
|
|
243
|
+
- Updated the Process.parent_task field to use related_name='subprocess',
|
|
244
|
+
allowing access to subprocesses via task.subprocess
|
|
245
|
+
- Enhanced CreateProcessView and UpdateProcessView to set process_seed and
|
|
246
|
+
artifact_generic_foreign_key fields based on form.cleaned_data, as Django
|
|
247
|
+
model forms do not handle this automatically.
|
|
248
|
+
- Added tasks with an ERROR status to the process dashboard for better visibility and tracking.
|
|
249
|
+
- Added tooltip hover titles to nodes without text labels in the SVG workflow graph.
|
|
250
|
+
- Marked StartHandler nodes as BPMN Start Message events on the SVG graph.
|
|
251
|
+
- Fixed rendering of hidden field errors in forms.
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
### 2.2.3 2024-07-09
|
|
255
|
+
|
|
256
|
+
- Fixed issue with Split/Join operations when an immediate split to join
|
|
257
|
+
connection occurs.
|
|
258
|
+
- Improved redirect functionality for "Execute and Continue." Now redirects to
|
|
259
|
+
the process details if the process has finished.
|
|
260
|
+
- Enabled the Undo action for End() nodes.
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
### 2.2.2 2024-07-05
|
|
264
|
+
|
|
265
|
+
- Introduced new parameters for .If().Then(.., task_data=, task_seed) and
|
|
266
|
+
.Else(...)
|
|
267
|
+
- Include {{ form.media }} into default workflow/task.html template
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
### 2.2.1 2024-07-03
|
|
271
|
+
|
|
272
|
+
- Introduced a new parameter for .Next(..., task_seed=) that allows the
|
|
273
|
+
instantiation of new tasks with additional initialized .seed generic foreign key
|
|
274
|
+
- Introduced a new parameter for .Split(..., task_seed_source=) same as task_data_source,
|
|
275
|
+
prodices outgoing tasks with initializaed .seed value
|
|
276
|
+
- Introduced a new parameter for flow.Subprocess(process_data=, process_seed=,
|
|
277
|
+
task_data=, task_seed=) allows to provide data nad seed for newly created
|
|
278
|
+
process and/or start task
|
|
279
|
+
|
|
280
|
+
### 2.2.0 2024-06-28
|
|
281
|
+
|
|
282
|
+
- Introduced a new parameter for .Next(..., task_data=) that allows the
|
|
283
|
+
instantiation of new tasks with additional initialized .data, enabling data to
|
|
284
|
+
be passed from task to task.
|
|
285
|
+
- Added process.seed and task.seed generic foreign keys to the default workflow
|
|
286
|
+
models. Along with process.artifact and task.artifact, these additions enable
|
|
287
|
+
tracking of business process results from start to finish.
|
|
288
|
+
- Renamed Split.Next(data_source=) to task_data_source=.
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
[build]: https://img.shields.io/github/actions/workflow/status/viewflow/viewflow/django.yml?branch=main
|
|
292
|
+
[coverage]: https://img.shields.io/coveralls/github/viewflow/viewflow/v2
|
|
293
|
+
[travis-svg]: https://travis-ci.org/viewflow/viewflow.svg
|
|
294
|
+
[travis]: https://travis-ci.org/viewflow/viewflow
|
|
295
|
+
[pypi]: https://pypi.org/project/django-viewflow/
|
|
296
|
+
[pypi-version]: https://img.shields.io/pypi/v/django-viewflow.svg
|
|
297
|
+
[py-versions]: https://img.shields.io/pypi/pyversions/django-viewflow.svg
|
|
298
|
+
[requirements-svg]: https://requires.io/github/viewflow/viewflow/requirements.svg?branch=v2
|
|
299
|
+
[requirements]: https://requires.io/github/viewflow/viewflow/requirements/?branch=v2
|
|
300
|
+
[gpt]: https://chatgpt.com/g/g-8UHAnOpE3-viewflow-pair-programming
|
|
@@ -0,0 +1,300 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: django-viewflow
|
|
3
|
+
Version: 2.2.7
|
|
4
|
+
Summary: Reusable library to build business applications fast
|
|
5
|
+
Author: Mikhail Podgurskiy
|
|
6
|
+
Author-email: kmmbvnr@gmail.com
|
|
7
|
+
License: AGPL
|
|
8
|
+
Keywords: django,admin,workflow,fsm,bpm,bpmn
|
|
9
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Natural Language :: English
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Framework :: Django
|
|
14
|
+
Classifier: Framework :: Django :: 4.2
|
|
15
|
+
Classifier: Framework :: Django :: 5.0
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
24
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
25
|
+
Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
|
|
26
|
+
Requires-Python: >=3.8
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
License-File: LICENSE
|
|
29
|
+
Requires-Dist: Django>=4.2
|
|
30
|
+
Requires-Dist: django-filter>=2.3.0
|
|
31
|
+
|
|
32
|
+
# Viewflow
|
|
33
|
+
|
|
34
|
+
**The low-code for developers with yesterday's deadline**
|
|
35
|
+
|
|
36
|
+
[![build]][build] [![coverage]][coverage] [![pypi-version]][pypi] [![py-versions]][pypi]
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
Viewflow is a low-code, reusable component library for creating comprehensive business applications with ease. Built on top of Django, Viewflow simplifies development by providing pre-built components for user management, workflows, and reporting, while still offering flexibility to customize and integrate with existing systems.
|
|
40
|
+
|
|
41
|
+
With Viewflow, you can create full-featured business applications in just a few lines of code using its reusable component library. It's shipped as a single package with batteries included, and each part of Viewflow can be used independently of the others, but they all work well together.
|
|
42
|
+
|
|
43
|
+
GPT assisted with Viewflow documentation: [Viewflow Pair Programming Buddy][gpt]
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
Viewflow comes in two flavors:
|
|
47
|
+
- **Viewflow Core:** A lightweight, open-source library with only non-opinionated core classes that allows you to build your custom solution on top.
|
|
48
|
+
- **Viewflow PRO:** A comprehensive package that includes reference functionality implementation and integrated with third-party Django packages. This package has a commercial-friendly license that allows private forks and modifications of Viewflow.
|
|
49
|
+
|
|
50
|
+
<img src="assets/ShipmentProcess.png" alt="drawing" width="600"/>
|
|
51
|
+
|
|
52
|
+
## Features
|
|
53
|
+
|
|
54
|
+
- Modern, responsive user interface with an SPA-style look and feel
|
|
55
|
+
- Reusable workflow library for quick implementation of BPMN workflows
|
|
56
|
+
- Built-in customizable CRUD for managing complex forms and data
|
|
57
|
+
- Integrated reporting dashboard
|
|
58
|
+
- Small and concise API
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
## Installation
|
|
62
|
+
|
|
63
|
+
Viewflow works with Python 3.8 or greater and Django 4.0+
|
|
64
|
+
|
|
65
|
+
Viewflow:
|
|
66
|
+
|
|
67
|
+
pip install django-viewflow
|
|
68
|
+
|
|
69
|
+
Viewflow-PRO:
|
|
70
|
+
|
|
71
|
+
pip install django-viewflow-pro --extra-index-url https://pypi.viewflow.io/<licence_id>/simple/
|
|
72
|
+
|
|
73
|
+
Add 'viewflow' and, in case you need workflow capabilities 'viewflow.workflow' to the INSTALLED_APPS settings.py
|
|
74
|
+
|
|
75
|
+
```python
|
|
76
|
+
INSTALLED_APPS = [
|
|
77
|
+
....
|
|
78
|
+
'viewflow',
|
|
79
|
+
'viewflow.workflow',
|
|
80
|
+
]
|
|
81
|
+
```
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
## Quick start
|
|
85
|
+
|
|
86
|
+
Here's an example of how to create a simple pizza ordering workflow using Viewflow:
|
|
87
|
+
|
|
88
|
+
1. Create a model to store process data
|
|
89
|
+
|
|
90
|
+
Before creating the workflow, you'll need to define a model to store the process
|
|
91
|
+
data. Viewflow provides a Process model as the base model for your process
|
|
92
|
+
instances. You can add your own fields to the model using jsonstore fields to
|
|
93
|
+
avoid model inheritance and additional joins:
|
|
94
|
+
|
|
95
|
+
```python
|
|
96
|
+
|
|
97
|
+
from viewflow import jsonstore
|
|
98
|
+
from viewflow.workflow.models import Process
|
|
99
|
+
|
|
100
|
+
class PizzaOrder(Process):
|
|
101
|
+
customer_name = jsonstore.CharField(max_length=250)
|
|
102
|
+
address = jsonstore.TextField()
|
|
103
|
+
toppings = jsonstore.TextField()
|
|
104
|
+
tips_received = jsonstore.IntegerField(default=0)
|
|
105
|
+
baking_time = jsonstore.IntegerField(default=10)
|
|
106
|
+
|
|
107
|
+
class Meta:
|
|
108
|
+
proxy = True
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
2. Create a new flow definition file flows.py
|
|
112
|
+
|
|
113
|
+
Next, create a new flow definition file *flows.py* and define your workflow. In
|
|
114
|
+
this example, we'll create a PizzaFlow class that inherits from flow.Flow.
|
|
115
|
+
We'll define three steps in the workflow: start, bake, and deliver. We'll
|
|
116
|
+
use CreateProcessView and UpdateProcessView to create and update the process
|
|
117
|
+
data from PizzaOrder:
|
|
118
|
+
|
|
119
|
+
```python
|
|
120
|
+
|
|
121
|
+
from viewflow import this
|
|
122
|
+
from viewflow.workflow import flow
|
|
123
|
+
from viewflow.workflow.flow.views import CreateProcessView, UpdateProcessView
|
|
124
|
+
from .models import PizzaOrder
|
|
125
|
+
|
|
126
|
+
class PizzaFlow(flow.Flow):
|
|
127
|
+
process_class = PizzaOrder
|
|
128
|
+
|
|
129
|
+
start = flow.Start(
|
|
130
|
+
CreateProcessView.as_view(
|
|
131
|
+
fields=["customer_name", "address", "toppings"]
|
|
132
|
+
)
|
|
133
|
+
).Next(this.bake)
|
|
134
|
+
|
|
135
|
+
bake = flow.View(
|
|
136
|
+
UpdateProcessView.as_view(fields=["baking_time"])
|
|
137
|
+
).Next(this.deliver)
|
|
138
|
+
|
|
139
|
+
deliver = flow.View(
|
|
140
|
+
UpdateProcessView.as_view(fields=["tips_received"])
|
|
141
|
+
).Next(this.end)
|
|
142
|
+
|
|
143
|
+
end = flow.End()
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
3. Add the flow to your URL configuration:
|
|
147
|
+
|
|
148
|
+
Finally, add the PizzaFlow to your URL configuration. You can use the Site and
|
|
149
|
+
FlowAppViewset classes to register your workflow with the pre-built frontend.
|
|
150
|
+
|
|
151
|
+
```python
|
|
152
|
+
|
|
153
|
+
from django.urls import path
|
|
154
|
+
from viewflow.contrib.auth import AuthViewset
|
|
155
|
+
from viewflow.urls import Application, Site
|
|
156
|
+
from viewflow.workflow.flow import FlowAppViewset
|
|
157
|
+
from my_pizza.flows import PizzaFlow
|
|
158
|
+
|
|
159
|
+
site = Site(
|
|
160
|
+
title="Pizza Flow Demo",
|
|
161
|
+
viewsets=[
|
|
162
|
+
FlowAppViewset(PizzaFlow, icon="local_pizza"),
|
|
163
|
+
]
|
|
164
|
+
)
|
|
165
|
+
|
|
166
|
+
urlpatterns = [
|
|
167
|
+
path("accounts/", AuthViewset().urls),
|
|
168
|
+
path("", site.urls),
|
|
169
|
+
]
|
|
170
|
+
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
4. Make and run migrations and access the workflow through the pre-built frontend.
|
|
174
|
+
|
|
175
|
+
Make and run migrations to create the necessary database tables, then start your Django
|
|
176
|
+
server and access the workflow through the pre-built frontend. You should be
|
|
177
|
+
able to create and track pizza orders with the workflow.
|
|
178
|
+
|
|
179
|
+
Go to the https://docs.viewflow.io/workflow/writing.html for the next steps
|
|
180
|
+
|
|
181
|
+
## Documentation
|
|
182
|
+
|
|
183
|
+
Viewflow's documentation for the latest version is available at
|
|
184
|
+
http://docs.viewflow.io/
|
|
185
|
+
|
|
186
|
+
Documentarian for Viewflow 1.xx series available at http://v1-docs.viewflow.io
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
## Demo
|
|
190
|
+
|
|
191
|
+
http://demo.viewflow.io/
|
|
192
|
+
|
|
193
|
+
## Cookbook
|
|
194
|
+
|
|
195
|
+
For sample applications and code snippets, check out the Viewflow PRO cookbook at
|
|
196
|
+
|
|
197
|
+
https://github.com/viewflow/cookbook
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
## License
|
|
201
|
+
|
|
202
|
+
Viewflow is an Open Source project licensed under the terms of the AGPL license - [The GNU Affero General Public License v3.0](http://www.gnu.org/licenses/agpl-3.0.html) with the Additional Permissions
|
|
203
|
+
described in [LICENSE_EXCEPTION](./LICENSE_EXCEPTION)
|
|
204
|
+
|
|
205
|
+
The AGPL license with Additional Permissions is a free software license that
|
|
206
|
+
allows commercial use and distribution of the software. It is similar to the GNU
|
|
207
|
+
GCC Runtime Library license, and it includes additional permissions that make it
|
|
208
|
+
more friendly for commercial development.
|
|
209
|
+
|
|
210
|
+
You can read more about AGPL and its compatibility with commercial use at the
|
|
211
|
+
[AGPL FAQ](http://www.affero.org/oagf.html)
|
|
212
|
+
|
|
213
|
+
If you use Linux already, this package license likely won't bring anything new to your stack.
|
|
214
|
+
|
|
215
|
+
Viewflow PRO has a commercial-friendly license allowing private forks and
|
|
216
|
+
modifications of Viewflow. You can find the commercial license terms in
|
|
217
|
+
[COMM-LICENSE](./COMM-LICENSE).
|
|
218
|
+
|
|
219
|
+
## Changelog
|
|
220
|
+
|
|
221
|
+
### 2.2.5 2024-07-17
|
|
222
|
+
|
|
223
|
+
- The 'pattern' widget attribute is now passed to the underlying form input.
|
|
224
|
+
- Fixed issue with flow image reload.
|
|
225
|
+
- Fixed dashboard max height on pages with long sidebars.
|
|
226
|
+
- Added .get_success_url(request) shortcut method to StartViewActivation and
|
|
227
|
+
ViewActivation for convenient use in function-based views.
|
|
228
|
+
- Fixed duplicated task_finished signal on flow.View completion.
|
|
229
|
+
- Enabled callable defaults on jsonstore fields.
|
|
230
|
+
- Improved SVG and BPMN export shapes for SplitFirst and Timer Tasks.
|
|
231
|
+
- Created cookbook demo for common workflow patterns
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
### 2.2.4 2024-07-12
|
|
235
|
+
|
|
236
|
+
- Clone data, seed, and artifacts from canceled tasks to revived tasks.
|
|
237
|
+
- Enhance error handling for celery.Job.
|
|
238
|
+
- Improve the process cancellation template.
|
|
239
|
+
- Redirect to the task detail page after canceling or undoing actions, instead
|
|
240
|
+
of redirecting to the process detail page.
|
|
241
|
+
- Added links to parent subprocess and parent task on the subprocess process and
|
|
242
|
+
task details pages.
|
|
243
|
+
- Updated the Process.parent_task field to use related_name='subprocess',
|
|
244
|
+
allowing access to subprocesses via task.subprocess
|
|
245
|
+
- Enhanced CreateProcessView and UpdateProcessView to set process_seed and
|
|
246
|
+
artifact_generic_foreign_key fields based on form.cleaned_data, as Django
|
|
247
|
+
model forms do not handle this automatically.
|
|
248
|
+
- Added tasks with an ERROR status to the process dashboard for better visibility and tracking.
|
|
249
|
+
- Added tooltip hover titles to nodes without text labels in the SVG workflow graph.
|
|
250
|
+
- Marked StartHandler nodes as BPMN Start Message events on the SVG graph.
|
|
251
|
+
- Fixed rendering of hidden field errors in forms.
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
### 2.2.3 2024-07-09
|
|
255
|
+
|
|
256
|
+
- Fixed issue with Split/Join operations when an immediate split to join
|
|
257
|
+
connection occurs.
|
|
258
|
+
- Improved redirect functionality for "Execute and Continue." Now redirects to
|
|
259
|
+
the process details if the process has finished.
|
|
260
|
+
- Enabled the Undo action for End() nodes.
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
### 2.2.2 2024-07-05
|
|
264
|
+
|
|
265
|
+
- Introduced new parameters for .If().Then(.., task_data=, task_seed) and
|
|
266
|
+
.Else(...)
|
|
267
|
+
- Include {{ form.media }} into default workflow/task.html template
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
### 2.2.1 2024-07-03
|
|
271
|
+
|
|
272
|
+
- Introduced a new parameter for .Next(..., task_seed=) that allows the
|
|
273
|
+
instantiation of new tasks with additional initialized .seed generic foreign key
|
|
274
|
+
- Introduced a new parameter for .Split(..., task_seed_source=) same as task_data_source,
|
|
275
|
+
prodices outgoing tasks with initializaed .seed value
|
|
276
|
+
- Introduced a new parameter for flow.Subprocess(process_data=, process_seed=,
|
|
277
|
+
task_data=, task_seed=) allows to provide data nad seed for newly created
|
|
278
|
+
process and/or start task
|
|
279
|
+
|
|
280
|
+
### 2.2.0 2024-06-28
|
|
281
|
+
|
|
282
|
+
- Introduced a new parameter for .Next(..., task_data=) that allows the
|
|
283
|
+
instantiation of new tasks with additional initialized .data, enabling data to
|
|
284
|
+
be passed from task to task.
|
|
285
|
+
- Added process.seed and task.seed generic foreign keys to the default workflow
|
|
286
|
+
models. Along with process.artifact and task.artifact, these additions enable
|
|
287
|
+
tracking of business process results from start to finish.
|
|
288
|
+
- Renamed Split.Next(data_source=) to task_data_source=.
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
[build]: https://img.shields.io/github/actions/workflow/status/viewflow/viewflow/django.yml?branch=main
|
|
292
|
+
[coverage]: https://img.shields.io/coveralls/github/viewflow/viewflow/v2
|
|
293
|
+
[travis-svg]: https://travis-ci.org/viewflow/viewflow.svg
|
|
294
|
+
[travis]: https://travis-ci.org/viewflow/viewflow
|
|
295
|
+
[pypi]: https://pypi.org/project/django-viewflow/
|
|
296
|
+
[pypi-version]: https://img.shields.io/pypi/v/django-viewflow.svg
|
|
297
|
+
[py-versions]: https://img.shields.io/pypi/pyversions/django-viewflow.svg
|
|
298
|
+
[requirements-svg]: https://requires.io/github/viewflow/viewflow/requirements.svg?branch=v2
|
|
299
|
+
[requirements]: https://requires.io/github/viewflow/viewflow/requirements/?branch=v2
|
|
300
|
+
[gpt]: https://chatgpt.com/g/g-8UHAnOpE3-viewflow-pair-programming
|
|
@@ -4,7 +4,7 @@ README = open("README.md", "r", encoding="utf-8").read()
|
|
|
4
4
|
|
|
5
5
|
setuptools.setup(
|
|
6
6
|
name="django-viewflow",
|
|
7
|
-
version="2.2.
|
|
7
|
+
version="2.2.7",
|
|
8
8
|
author_email="kmmbvnr@gmail.com",
|
|
9
9
|
author="Mikhail Podgurskiy",
|
|
10
10
|
description="Reusable library to build business applications fast",
|
|
@@ -13,6 +13,8 @@ setuptools.setup(
|
|
|
13
13
|
license="AGPL",
|
|
14
14
|
# long_description_content_type="text/markdown",
|
|
15
15
|
# long_description=README,
|
|
16
|
+
long_description_content_type="text/markdown",
|
|
17
|
+
long_description=README,
|
|
16
18
|
packages=setuptools.find_packages(exclude=["tests*"]),
|
|
17
19
|
python_requires=">=3.8",
|
|
18
20
|
zip_safe=False,
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
# 'COMM_LICENSE', which is part of this source code package.
|
|
6
6
|
|
|
7
7
|
from django.core.exceptions import PermissionDenied, SuspiciousOperation
|
|
8
|
+
from django.db import transaction
|
|
8
9
|
from django.forms import modelform_factory
|
|
9
10
|
from django.http import HttpResponseRedirect
|
|
10
11
|
from django.urls import path
|
|
@@ -62,6 +63,7 @@ class ModelTransitionView(UpdateModelView):
|
|
|
62
63
|
else:
|
|
63
64
|
return super().get_form_class()
|
|
64
65
|
|
|
66
|
+
@transaction.atomic
|
|
65
67
|
def form_valid(self, form):
|
|
66
68
|
self.object = form.save()
|
|
67
69
|
self.transition()
|