summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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),
)