profile/urls.py
changeset 38 c8c47fcb46f0
parent 37 c701e68f8d35
child 48 3cfd74f9363e
--- a/profile/urls.py	Fri Jan 07 12:21:43 2011 +0530
+++ b/profile/urls.py	Fri Jan 07 12:35:18 2011 +0530
@@ -1,12 +1,13 @@
 from django.conf.urls.defaults import *
 
 from pytask.profile.views import view_profile, edit_profile,\
-                                 browse_notifications
+                                 browse_notifications, view_notification
 
 urlpatterns = patterns('',
 
             (r'^view/$', view_profile),
             (r'^edit/$', edit_profile),
             (r'^notf/browse/$', browse_notifications),
+            (r'^notf/view/nid=(\w+)$', view_notification),
 )