Skip to content

brad-luo/django-customflow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-cutomflow

  • 该项目是一个高度自定义, 持久化的流程框架.

Unstallation

First, install the package with pip.

pip install django-customflow

pip install django-customflow`

Register django_customflow in your list of Django applications:

INSTALLED_APPS = (
    ...,
    'django_customflow',
    ...,
)

Then migrate the app to create the database table
python manage.py migrate django_customflow

Usage

In your models, add the mixin, like:

from django.db import models
from django_customflow.mixins import WorkflowMixin

class TestObj(models.Model, WorkflowMixin):
    ...

Then you can use the methods of WorkflowMixin. For specific
usage, please refer to the docs.

About

基于django的高度自定义流引擎

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages