Files @ 79361cdf97dd
Branch filter:

Location: website/conservancy/local_context_processors.py

bsturmfels
Move fundraiser calculations to model

This changes simplifies the template and adds correct pluralisation of
hours/hour remaining.
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('/')}