summaryrefslogtreecommitdiff
path: root/urls.py
diff options
context:
space:
mode:
authorNishanth Amuluru2011-01-07 11:19:36 +0530
committerNishanth Amuluru2011-01-07 11:19:36 +0530
commit7c47c84aea9196fdbe76b2d905774f81cffea112 (patch)
tree8f0b4c0ae5d2355871496a1c43c856a51eb9d4f2 /urls.py
parent745d5f4b89bd466ccbe2e41530b442bdf35b35f8 (diff)
downloadpytask-7c47c84aea9196fdbe76b2d905774f81cffea112.tar.gz
pytask-7c47c84aea9196fdbe76b2d905774f81cffea112.tar.bz2
pytask-7c47c84aea9196fdbe76b2d905774f81cffea112.zip
Created a view for viewing profile
Diffstat (limited to 'urls.py')
-rwxr-xr-xurls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/urls.py b/urls.py
index 42f70d5..b22d165 100755
--- a/urls.py
+++ b/urls.py
@@ -22,6 +22,6 @@ urlpatterns = patterns('',
url(r'^accounts/register/$', register,
{'form_class': CustomRegistrationForm},
name='registration_register'),
-
+ (r'^accounts/profile/', include('pytask.profile.urls')),
(r'^accounts/', include('registration.urls')),
)