gremmie@1: """urls for the contact application""" gremmie@1: from django.conf.urls.defaults import * gremmie@1: gremmie@1: urlpatterns = patterns('contact.views', gremmie@1: url(r'^$', 'contact_form', name='contact-form'), gremmie@1: (r'^thanks/$', 'contact_thanks'), gremmie@1: )