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

5
apps/workflows/urls.py Normal file
View File

@@ -0,0 +1,5 @@
from django.conf.urls.defaults import patterns, url
urlpatterns = patterns('workflows.views',
url(r'^setup/list/$', 'setup_workflow_list', (), 'setup_workflow_list'),
)