website/conservancy/local_context_processors.py
Ben Sturmfels 79361cdf97
Move fundraiser calculations to model
This changes simplifies the template and adds correct pluralisation of
hours/hour remaining.
2024-03-21 13:20:30 +11:00

18 lines
521 B
Python

from .fundgoal.models import FundraisingGoal
SITE_FUNDGOAL = 'cy2023-end-year-match'
def fundgoal_lookup(fundraiser_sought):
try:
return FundraisingGoal.objects.get(fundraiser_code_name=fundraiser_sought)
except FundraisingGoal.DoesNotExist:
# we have no object! do something
return None
def sitefundraiser(request):
return {
'sitefundgoal': fundgoal_lookup(SITE_FUNDGOAL),
}
def host_url(request):
return {'host_url': request.build_absolute_uri('/').rstrip('/')}