annotate gpp/donations/urls.py @ 160:2eb3984ccb15
Implement #45, add a who's online feature for the forums. Created middleware that caches usernames and guest session ids in the cache. Added a tag that displays this info.
author |
Brian Neal <bgneal@gmail.com> |
date |
Tue, 22 Dec 2009 02:08:05 +0000 |
parents |
296b610ee507 |
children |
b1c39788e511 |
rev |
line source |
bgneal@35
|
1 """
|
bgneal@35
|
2 URLs for the donations application.
|
bgneal@35
|
3 """
|
bgneal@35
|
4 from django.conf.urls.defaults import *
|
bgneal@35
|
5
|
bgneal@35
|
6 urlpatterns = patterns('donations.views',
|
bgneal@35
|
7 url(r'^$', 'index', name='donations-index'),
|
bgneal@35
|
8 url(r'^ipn/$', 'ipn', name='donations-ipn'),
|
bgneal@35
|
9 )
|
bgneal@36
|
10 urlpatterns += patterns('django.views.generic.simple',
|
bgneal@36
|
11 (r'^thanks/$', 'direct_to_template',
|
bgneal@36
|
12 {'template': 'donations/thanks.html'}, 'donations-thanks')
|
bgneal@36
|
13 )
|