aboutsummaryrefslogtreecommitdiff
path: root/contact/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 /contact/urls.py
parent39850fe5e8a23b402610167e33540ee615aed3ab (diff)
downloaddjango-precompiler-fc5ad68e62bd2b82450cdbdd3c83f8c1e94feed2.tar.bz2
django-precompiler-fc5ad68e62bd2b82450cdbdd3c83f8c1e94feed2.tar.xz
django-precompiler-fc5ad68e62bd2b82450cdbdd3c83f8c1e94feed2.zip
Add contact form
Diffstat (limited to 'contact/urls.py')
-rw-r--r--contact/urls.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/contact/urls.py b/contact/urls.py
new file mode 100644
index 0000000..0a28711
--- /dev/null
+++ b/contact/urls.py
@@ -0,0 +1,7 @@
1from django.conf.urls import patterns, include, url
2
3
4urlpatterns = patterns('contact.views',
5 url(r'^thanks/$', 'contact_processor', name='thanks'),
6 url(r'^$', 'contact_form', name='form'),
7)