summaryrefslogtreecommitdiff
path: root/profile/urls.py
diff options
context:
space:
mode:
authorNishanth Amuluru2011-01-07 12:21:43 +0530
committerNishanth Amuluru2011-01-07 12:21:43 +0530
commit75d1a5e6a46ded6293b730b57b2a89484a96dd6d (patch)
tree27a8d2b081aa22205d44ddf8459617ee0fcf64d6 /profile/urls.py
parent6204222b31e3225e345c3fddde631d49281cdc71 (diff)
downloadpytask-75d1a5e6a46ded6293b730b57b2a89484a96dd6d.tar.gz
pytask-75d1a5e6a46ded6293b730b57b2a89484a96dd6d.tar.bz2
pytask-75d1a5e6a46ded6293b730b57b2a89484a96dd6d.zip
fixed a typo and browse notifications works fine
Diffstat (limited to 'profile/urls.py')
-rw-r--r--profile/urls.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/profile/urls.py b/profile/urls.py
index a577d56..a5e92cd 100644
--- a/profile/urls.py
+++ b/profile/urls.py
@@ -1,10 +1,12 @@
from django.conf.urls.defaults import *
-from pytask.profile.views import view_profile, edit_profile
+from pytask.profile.views import view_profile, edit_profile,\
+ browse_notifications
urlpatterns = patterns('',
- (r'view', view_profile),
- (r'edit', edit_profile),
+ (r'^view/$', view_profile),
+ (r'^edit/$', edit_profile),
+ (r'^notf/browse/$', browse_notifications),
)