Fix the way the form CSS contained in the media attribute is rendered. This is now an interator and not a single value. Replace the current method with a for loop. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
13 lines
316 B
Python
13 lines
316 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
WORKFLOW_ACTION_ON_ENTRY = 1
|
|
WORKFLOW_ACTION_ON_EXIT = 2
|
|
|
|
WORKFLOW_ACTION_WHEN_CHOICES = (
|
|
(WORKFLOW_ACTION_ON_ENTRY, _('On entry')),
|
|
(WORKFLOW_ACTION_ON_EXIT, _('On exit')),
|
|
)
|
|
WORKFLOW_IMAGE_TASK_TIMEOUT = 60
|