profile/urls.py
author Nishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 12:21:43 +0530
changeset 275 c701e68f8d35
parent 269 dde894b36370
child 276 c8c47fcb46f0
permissions -rw-r--r--
fixed a typo and browse notifications works fine

from django.conf.urls.defaults import *

from pytask.profile.views import view_profile, edit_profile,\
                                 browse_notifications

urlpatterns = patterns('',

            (r'^view/$', view_profile),
            (r'^edit/$', edit_profile),
            (r'^notf/browse/$', browse_notifications),
)