profile/urls.py
changeset 48 3cfd74f9363e
parent 38 c8c47fcb46f0
child 50 869a9ab7e2df
--- a/profile/urls.py	Fri Jan 07 13:00:58 2011 +0530
+++ b/profile/urls.py	Fri Jan 07 13:11:29 2011 +0530
@@ -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 @@
             (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),
 )