Initial model schema, workflow setup button, workflow list view

This commit is contained in:
Roberto Rosario
2012-03-16 01:14:25 -04:00
parent 94ec7ca47f
commit 8c8befabdd
10 changed files with 444 additions and 3 deletions

View 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'))
)