summaryrefslogtreecommitdiff
path: root/gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py
diff options
context:
space:
mode:
authordhiru <dhirusingh11@gmail.com>2014-06-05 09:35:58 +0530
committerdhiru <dhirusingh11@gmail.com>2014-06-05 09:35:58 +0530
commit445d336e6cd4c2c9bcdf1938248f908fc1810c22 (patch)
tree7cc8cc3b051628aaaa179cf703e6aabdaf7cfab0 /gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py
parentf8ebd4e78d91b507c23dfaa31e1783b09bedd0f0 (diff)
downloadgnowsys-445d336e6cd4c2c9bcdf1938248f908fc1810c22.tar.gz
urls of task app
Diffstat (limited to 'gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py')
-rw-r--r--gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py
new file mode 100644
index 0000000..1a43bc4
--- /dev/null
+++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py
@@ -0,0 +1,8 @@
+from django.conf.urls import patterns, url
+
+urlpatterns = patterns('gnowsys_ndf.ndf.views.task',
+ url(r'^$', 'task', name='task'),
+ url(r'^/create$', 'create_edit_task', name='task_create_edit'),
+ url(r'^/(?P<task_id>[\w-]+)/$', 'task_details', name='task_details'),
+ url(r'^/edit/(?P<task_id>[\w-]+)/$', 'create_edit_task', name='task_edit'),
+ )