summaryrefslogtreecommitdiff
path: root/gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py
diff options
context:
space:
mode:
authormakfire <mukeshp46@gmail.com>2014-08-25 15:55:11 +0530
committermakfire <mukeshp46@gmail.com>2014-08-25 15:55:11 +0530
commitc09c573f9712d0bebc1f70269c8f382b93aa01b7 (patch)
tree620f7bbdd5d213abd0d7b3691d63cb33e76dc37a /gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py
parent2e139303aa7c09d5e8cc8000e952ef47e65f2ebe (diff)
downloadgnowsys-c09c573f9712d0bebc1f70269c8f382b93aa01b7.tar.gz
Task Filtering
Diffstat (limited to 'gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py')
-rw-r--r--gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py
index 4186d69..eeeebaf 100644
--- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py
+++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/task.py
@@ -6,4 +6,5 @@ urlpatterns = patterns('gnowsys_ndf.ndf.views.task',
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'),
)