diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gpp/donations/urls.py	Sun Jun 07 00:22:50 2009 +0000
@@ -0,0 +1,10 @@
+"""
+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'),
+)