comparison donations/views.py @ 1184:fbfb1a9c70e2

Make donations business a list. Paypal is now returning a different business email in IPN messages.
author Brian Neal <bgneal@gmail.com>
date Sun, 17 Oct 2021 14:40:53 -0500
parents 7fb9bc5a1232
children 8ec03abf16c1
comparison
equal deleted inserted replaced
1183:d6faffbb6025 1184:fbfb1a9c70e2
69 'net': net, 69 'net': net,
70 'left': settings.DONATIONS_GOAL - net, 70 'left': settings.DONATIONS_GOAL - net,
71 'pct': pct, 71 'pct': pct,
72 'donations': donations, 72 'donations': donations,
73 'form_action': form_action, 73 'form_action': form_action,
74 'business': business, 74 'business': business[0],
75 'anonymous': settings.DONATIONS_ANON_NAME, 75 'anonymous': settings.DONATIONS_ANON_NAME,
76 'item_name': settings.DONATIONS_ITEM_NAME, 76 'item_name': settings.DONATIONS_ITEM_NAME,
77 'item_number': settings.DONATIONS_ITEM_NUM, 77 'item_number': settings.DONATIONS_ITEM_NUM,
78 'item_anon_number': settings.DONATIONS_ITEM_ANON_NUM, 78 'item_anon_number': settings.DONATIONS_ITEM_ANON_NUM,
79 'domain': current_site.domain, 79 'domain': current_site.domain,