summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
authorDusty Phillips <buchuki@gmail.com>2009-08-10 15:47:02 -0400
committerDusty Phillips <buchuki@gmail.com>2009-08-10 15:47:02 -0400
commit0d2560fa55689d920bc7431fae3f2995bd1b0d71 (patch)
tree98db0e069181ba75133ab7340732d3f9b0e592f3 /urls.py
parentc3ecb485ae3eca5ba6dca96a22615dc11c6df7ee (diff)
downloadarchweb-0d2560fa55689d920bc7431fae3f2995bd1b0d71.tar.gz
archweb-0d2560fa55689d920bc7431fae3f2995bd1b0d71.zip
Add a page to aid Aaron in user creation.
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/urls.py b/urls.py
index 325db014..18d15d80 100644
--- a/urls.py
+++ b/urls.py
@@ -46,6 +46,8 @@ urlpatterns = patterns('',
(r'^devel/profile/$', 'archweb_dev.devel.views.change_profile'),
(r'^$', 'archweb_dev.devel.views.siteindex'),
+ (r'^devel/newuser/$', 'archweb_dev.devel.views.new_user_form'),
+
# Authentication / Admin
(r'^login/$', 'django.contrib.auth.views.login', {
'template_name': 'registration/login.html'}),
@@ -55,7 +57,7 @@ urlpatterns = patterns('',
'template_name': 'registration/logout.html'}),
(r'^accounts/logout/$', 'django.contrib.auth.views.logout', {
'template_name': 'registration/logout.html'}),
- (r'^admin/(.*)', admin.site.urls),
+ (r'^admin/(.*)', admin.site.root),
)
if settings.DEBUG == True: