aboutsummaryrefslogtreecommitdiff
path: root/codemash/urls.py
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2012-12-04 16:21:32 -0500
committerMike Crute <mcrute@gmail.com>2012-12-11 15:27:46 -0500
commitbd95993653a1b94d07316e24a0f519d00f9359d6 (patch)
tree45f44092fde26ad38db1aaaf123d7e2173fa973e /codemash/urls.py
parentab626f31a0645d87560d242a20dd60e01b3d3b46 (diff)
downloaddjango-precompiler-bd95993653a1b94d07316e24a0f519d00f9359d6.tar.bz2
django-precompiler-bd95993653a1b94d07316e24a0f519d00f9359d6.tar.xz
django-precompiler-bd95993653a1b94d07316e24a0f519d00f9359d6.zip
User can login and logout
Diffstat (limited to 'codemash/urls.py')
-rw-r--r--codemash/urls.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/codemash/urls.py b/codemash/urls.py
index 0431c65..567499c 100644
--- a/codemash/urls.py
+++ b/codemash/urls.py
@@ -6,6 +6,9 @@ from django.conf.urls import patterns, include, url
6 6
7urlpatterns = patterns('', 7urlpatterns = patterns('',
8 (r'^contact/', include('contact.urls', namespace='contact')), 8 (r'^contact/', include('contact.urls', namespace='contact')),
9 (r'^accounts/', include('django.contrib.auth.urls', namespace='auth')),
10 (r'^accounts/', include('accounts.urls', namespace='account')),
11
9 url(r'^$', 'pages.views.home', name='home'), 12 url(r'^$', 'pages.views.home', name='home'),
10 13
11 # Uncomment the admin/doc line below to enable admin documentation: 14 # Uncomment the admin/doc line below to enable admin documentation: