Mercurial > public > sg101
comparison gpp/settings.py @ 62:3767a6bc8d85
Make the donations debug business name be found in the local_settings as it can change frequently.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 27 Jun 2009 21:30:18 +0000 |
parents | 399a9a40bbcf |
children | 9a29e9933959 |
comparison
equal
deleted
inserted
replaced
61:8c9344e36813 | 62:3767a6bc8d85 |
---|---|
161 | 161 |
162 # Donations application settings: | 162 # Donations application settings: |
163 DONATIONS_DEBUG = True | 163 DONATIONS_DEBUG = True |
164 DONATIONS_ITEM_NAME = 'Donation for SurfGuitar101.com' | 164 DONATIONS_ITEM_NAME = 'Donation for SurfGuitar101.com' |
165 DONATIONS_BUSINESS = 'brian@surfguitar101.com' | 165 DONATIONS_BUSINESS = 'brian@surfguitar101.com' |
166 DONATIONS_BUSINESS_DEBUG = 'bgneal_1194212446_biz@gmail.com' | 166 DONATIONS_BUSINESS_DEBUG = local_settings.DONATIONS_BUSINESS_DEBUG |
167 DONATIONS_GOAL = Decimal('100.00') # monthly goal | 167 DONATIONS_GOAL = Decimal('100.00') # monthly goal |
168 DONATIONS_ANON_NAME = u'Anonymous' | 168 DONATIONS_ANON_NAME = u'Anonymous' |
169 DONATIONS_ITEM_NUM = '500' # donation w/name listed | 169 DONATIONS_ITEM_NUM = '500' # donation w/name listed |
170 DONATIONS_ITEM_ANON_NUM = '501' # donation listed as anonymous | 170 DONATIONS_ITEM_ANON_NUM = '501' # donation listed as anonymous |
171 | 171 |