namespace and not directly to the model. Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
10 lines
260 B
Python
10 lines
260 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.utils.translation import ugettext_lazy as _
|
|
|
|
from common.classes import ErrorLogNamespace
|
|
|
|
error_log_state_actions = ErrorLogNamespace(
|
|
name='workflow_state_actions', label=_('Workflow state actions')
|
|
)
|