profile/urls.py
author Nishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 12:12:06 +0530
changeset 273 8318df7e2d52
parent 269 dde894b36370
child 275 c701e68f8d35
permissions -rw-r--r--
created a view for browising thro notifications

from django.conf.urls.defaults import *

from pytask.profile.views import view_profile, edit_profile

urlpatterns = patterns('',

            (r'view', view_profile),
            (r'edit', edit_profile),
)