Initial model schema, workflow setup button, workflow list view
This commit is contained in:
9
apps/workflows/literals.py
Normal file
9
apps/workflows/literals.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from django.utils.translation import ugettext_lazy as _
|
||||
|
||||
OPERAND_OR = 'or'
|
||||
OPERAND_AND = 'and'
|
||||
|
||||
OPERAND_CHOICES = (
|
||||
(OPERAND_OR, _(u'or')),
|
||||
(OPERAND_AND, _(u'and'))
|
||||
)
|
||||
Reference in New Issue
Block a user