view gpp/contact/urls.py @ 21:884839ddbfde

Webinks: added a navigation template tag so views don't have to keep constructing the searc form. Also provided a count of search results on the template.
author Brian Neal <bgneal@gmail.com>
date Sun, 19 Apr 2009 21:00:06 +0000
parents dbd703f7d63a
children ddd69a8e07c7
line wrap: on
line source
"""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'),
)