profile/urls.py
author Nishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 11:25:21 +0530
changeset 29 b1245d75938d
child 31 dde894b36370
permissions -rw-r--r--
Added template for viewing profile
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
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     3
from pytask.profile.views import view_profile
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),
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     8
)
b1245d75938d Added template for viewing profile
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     9