summaryrefslogtreecommitdiff
path: root/profile
diff options
context:
space:
mode:
authorNishanth Amuluru2011-01-07 13:11:29 +0530
committerNishanth Amuluru2011-01-07 13:11:29 +0530
commit508d43605e42f49f6801e97a38f84a4c58b4b8f0 (patch)
tree0c3c210269ee13178af1f0fabf73217afe3ed5d4 /profile
parenta79de71d6f2d49ba0de854715372a78a8364408a (diff)
downloadpytask-508d43605e42f49f6801e97a38f84a4c58b4b8f0.tar.gz
pytask-508d43605e42f49f6801e97a38f84a4c58b4b8f0.tar.bz2
pytask-508d43605e42f49f6801e97a38f84a4c58b4b8f0.zip
included the urls for delete and unread notification
Diffstat (limited to 'profile')
-rw-r--r--profile/urls.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/profile/urls.py b/profile/urls.py
index 4046fa5..33fe4df 100644
--- a/profile/urls.py
+++ b/profile/urls.py
@@ -1,7 +1,8 @@
from django.conf.urls.defaults import *
from pytask.profile.views import view_profile, edit_profile,\
- browse_notifications, view_notification
+ browse_notifications, view_notification,\
+ delte_notification, unread_notification
urlpatterns = patterns('',
@@ -9,5 +10,7 @@ urlpatterns = patterns('',
(r'^edit/$', edit_profile),
(r'^notf/browse/$', browse_notifications),
(r'^notf/view/nid=(\w+)$', view_notification),
+ (r'^notf/del/nid=(\w+)$', delete_notification),
+ (r'^notf/unr/nid=(\w+)$', unread_notification),
)