summaryrefslogtreecommitdiff
path: root/profile/urls.py
blob: a577d56130ecd10faf3cf4a9e0d4d02962ae2f26 (plain)
1
2
3
4
5
6
7
8
9
10
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),
)