summaryrefslogtreecommitdiff
path: root/profile/urls.py
blob: b13cc259098e89afb84f1d181f3ca87c92c2be15 (plain)
1
2
3
4
5
6
7
8
9
from django.conf.urls.defaults import *

from pytask.profile.views import view_profile

urlpatterns = patterns('',

            (r'view', view_profile),
)