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 __future__ import absolute_import
from django.utils.translation import ugettext_lazy as _
from permissions.models import PermissionNamespace, Permission
user_management_namespace = PermissionNamespace('workflows', _(u'Workflows'))
PERMISSION_WORKFLOW_SETUP_VIEW = Permission.objects.register(user_management_namespace, 'workflow_setup_view', _(u'View existing workflows templates'))