diff options
author | Nishanth Amuluru | 2011-01-07 11:42:34 +0530 |
---|---|---|
committer | Nishanth Amuluru | 2011-01-07 11:42:34 +0530 |
commit | 89e01c60efdcb6eb5151370e2b211fbf2a844de5 (patch) | |
tree | c3fd7dd9e0686900d262af423485d0f69c4290c2 /profile/urls.py | |
parent | 5e4a908ac4397a4b1070b8ecf6a85a5031956a42 (diff) | |
download | pytask-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.py | 3 |
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), ) |