Mercurial > public > sg101
view gpp/donations/urls.py @ 35:f77a1cdd7a46
Donations: first cut at a donations view and a form built for paypal.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 07 Jun 2009 00:22:50 +0000 |
parents | |
children | 296b610ee507 |
line wrap: on
line source
""" URLs for the donations application. """ from django.conf.urls.defaults import * urlpatterns = patterns('donations.views', url(r'^$', 'index', name='donations-index'), url(r'^ipn/$', 'ipn', name='donations-ipn'), url(r'^thanks/$', 'thanks', name='donations-thanks'), )