aboutsummaryrefslogtreecommitdiff
path: root/codemash/urls.py
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2012-12-04 15:50:42 -0500
committerMike Crute <mcrute@gmail.com>2012-12-11 15:27:46 -0500
commitfc5ad68e62bd2b82450cdbdd3c83f8c1e94feed2 (patch)
treeb521cb9d395bed84d88bce003327af3020010810 /codemash/urls.py
parent39850fe5e8a23b402610167e33540ee615aed3ab (diff)
downloaddjango-precompiler-fc5ad68e62bd2b82450cdbdd3c83f8c1e94feed2.tar.bz2
django-precompiler-fc5ad68e62bd2b82450cdbdd3c83f8c1e94feed2.tar.xz
django-precompiler-fc5ad68e62bd2b82450cdbdd3c83f8c1e94feed2.zip
Add contact form
Diffstat (limited to 'codemash/urls.py')
-rw-r--r--codemash/urls.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/codemash/urls.py b/codemash/urls.py
index 2fae4f3..0431c65 100644
--- a/codemash/urls.py
+++ b/codemash/urls.py
@@ -5,9 +5,8 @@ from django.conf.urls import patterns, include, url
5# admin.autodiscover() 5# admin.autodiscover()
6 6
7urlpatterns = patterns('', 7urlpatterns = patterns('',
8 # Examples: 8 (r'^contact/', include('contact.urls', namespace='contact')),
9 url(r'^$', 'pages.views.home', name='home'), 9 url(r'^$', 'pages.views.home', name='home'),
10 # url(r'^codemash/', include('codemash.foo.urls')),
11 10
12 # Uncomment the admin/doc line below to enable admin documentation: 11 # Uncomment the admin/doc line below to enable admin documentation:
13 # url(r'^admin/doc/', include('django.contrib.admindocs.urls')), 12 # url(r'^admin/doc/', include('django.contrib.admindocs.urls')),