diff gpp/contact/urls.py @ 1:dbd703f7d63a

Initial import of sg101 stuff from private repository.
author gremmie
date Mon, 06 Apr 2009 02:43:12 +0000
parents
children ddd69a8e07c7
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gpp/contact/urls.py	Mon Apr 06 02:43:12 2009 +0000
@@ -0,0 +1,7 @@
+"""urls for the contact application"""
+from django.conf.urls.defaults import *
+
+urlpatterns = patterns('contact.views',
+   url(r'^$', 'contact_form', name='contact-form'),
+   (r'^thanks/$', 'contact_thanks'),
+)