summaryrefslogtreecommitdiff
path: root/profile/urls.py
diff options
context:
space:
mode:
authorNishanth Amuluru2011-01-07 11:42:34 +0530
committerNishanth Amuluru2011-01-07 11:42:34 +0530
commit89e01c60efdcb6eb5151370e2b211fbf2a844de5 (patch)
treec3fd7dd9e0686900d262af423485d0f69c4290c2 /profile/urls.py
parent5e4a908ac4397a4b1070b8ecf6a85a5031956a42 (diff)
downloadpytask-89e01c60efdcb6eb5151370e2b211fbf2a844de5.tar.gz
pytask-89e01c60efdcb6eb5151370e2b211fbf2a844de5.tar.bz2
pytask-89e01c60efdcb6eb5151370e2b211fbf2a844de5.zip
created view for editing profile and created corresponding template
Diffstat (limited to 'profile/urls.py')
-rw-r--r--profile/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/profile/urls.py b/profile/urls.py
index b13cc25..a577d56 100644
--- a/profile/urls.py
+++ b/profile/urls.py
@@ -1,9 +1,10 @@
from django.conf.urls.defaults import *
-from pytask.profile.views import view_profile
+from pytask.profile.views import view_profile, edit_profile
urlpatterns = patterns('',
(r'view', view_profile),
+ (r'edit', edit_profile),
)