profile/urls.py
author Nishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 11:42:34 +0530
changeset 31 dde894b36370
parent 29 b1245d75938d
child 37 c701e68f8d35
permissions -rw-r--r--
created view for editing profile and created corresponding template
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
29
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     1
from django.conf.urls.defaults import *
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     2
31
dde894b36370 created view for editing profile and created corresponding template
Nishanth Amuluru <nishanth@fossee.in>
parents: 29
diff changeset
     3
from pytask.profile.views import view_profile, edit_profile
29
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     4
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     5
urlpatterns = patterns('',
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     6
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     7
            (r'view', view_profile),
31
dde894b36370 created view for editing profile and created corresponding template
Nishanth Amuluru <nishanth@fossee.in>
parents: 29
diff changeset
     8
            (r'edit', edit_profile),
29
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     9
)
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    10