summaryrefslogtreecommitdiffstats
path: root/profiles/urls.py
diff options
context:
space:
mode:
authorsubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-05-13 05:54:17 +0100
committersubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-05-13 05:54:17 +0100
commitb57452f68de8f73c63222c61fdae84f900c3a190 (patch)
tree89d7af037d3bbaa1cfd303bcc2d87bb9507cc0ba /profiles/urls.py
parent24dc7c5a0c996945a0709f8e82b026914ee9dbfc (diff)
downloadtroggle-b57452f68de8f73c63222c61fdae84f900c3a190.tar.gz
troggle-b57452f68de8f73c63222c61fdae84f900c3a190.tar.bz2
troggle-b57452f68de8f73c63222c61fdae84f900c3a190.zip
[svn] Enable profile setup forms.
Profiles are Person model instances, and are linked to django's built in User model by a one to one foreign key. We are using the django-registration and django-profiles pluggables. Copied from http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8247 by aaron @ 2/18/2009 9:35 PM
Diffstat (limited to 'profiles/urls.py')
-rw-r--r--profiles/urls.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/profiles/urls.py b/profiles/urls.py
index 05ff9e4..a703e9b 100644
--- a/profiles/urls.py
+++ b/profiles/urls.py
@@ -28,6 +28,9 @@ from profiles import views
urlpatterns = patterns('',
+ url(r'^select/$',
+ views.select_profile,
+ name='profiles_select_profile'),
url(r'^create/$',
views.create_profile,
name='profiles_create_profile'),