aboutsummaryrefslogtreecommitdiff
path: root/contact/urls.py
diff options
context:
space:
mode:
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)