diff options
Diffstat (limited to 'profile/urls.py')
-rw-r--r-- | profile/urls.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/profile/urls.py b/profile/urls.py index a5e92cd..4046fa5 100644 --- a/profile/urls.py +++ b/profile/urls.py @@ -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), ) |