Fix worklow state and transition deletion views. GH issue #237. Conflicts: mayan/apps/document_states/apps.py mayan/apps/document_states/views.py
9 lines
309 B
Python
9 lines
309 B
Python
from __future__ import unicode_literals
|
|
|
|
TEST_WORKFLOW_LABEL = 'test workflow'
|
|
TEST_WORKFLOW_INITIAL_STATE_LABEL = 'test initial state'
|
|
TEST_WORKFLOW_INITIAL_STATE_COMPLETION = 33
|
|
TEST_WORKFLOW_STATE_LABEL = 'test state'
|
|
TEST_WORKFLOW_STATE_COMPLETION = 66
|
|
TEST_WORKFLOW_TRANSITION_LABEL = 'test transtition'
|