summaryrefslogtreecommitdiff
path: root/gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py
diff options
context:
space:
mode:
authoradmin <admin@krishna-K55VM.(none)>2014-10-04 13:59:57 +0530
committeradmin <admin@krishna-K55VM.(none)>2014-10-04 13:59:57 +0530
commit753a58b39724b2f76501653059e20480381e07cc (patch)
tree6181b54d6ff641224a1f1ae31f91d9fe9cfa5836 /gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py
parent7ce7f78495d00557b01298119fccf8616f247c0a (diff)
downloadgnowsys-753a58b39724b2f76501653059e20480381e07cc.tar.gz
task list view implemented
Diffstat (limited to 'gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py')
-rw-r--r--gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py
index 8ce8d02..c73bd31 100644
--- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py
+++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py
@@ -4,7 +4,10 @@ urlpatterns = patterns('gnowsys_ndf.ndf.views.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'),
+
url(r'^/delete_task/(?P<_id>[\w-]+)$', 'delete_task', name='delete_task'),
url(r'^/filter/(?P<choice>[\w-]+)/status/(?P<status>[\w-]+)$','check_filter',name='check_filter'),
+ url(r'^/filter/(?P<choice>[\w-]+)/status/(?P<status>[\w-]+)/page/(?P<each_page>[\w-]+)$','check_filter',name='filter'),
+
)