# HG changeset patch # User Nishanth Amuluru # Date 1294386089 -19800 # Node ID 3cfd74f9363e6d147fc38cdf1a7aea65ea77ceda # Parent cbb336da00bda8569d3229e96386462e68c29b29 included the urls for delete and unread notification diff -r cbb336da00bd -r 3cfd74f9363e profile/urls.py --- 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), )