diff --git a/www/conservancy/local_context_processors.py b/www/conservancy/local_context_processors.py index 89d465f845544bdd2a650c6a827281444bbdd547..9dfe96323af89e8fe60708e2470590fbc875f93a 100644 --- a/www/conservancy/local_context_processors.py +++ b/www/conservancy/local_context_processors.py @@ -5,14 +5,6 @@ import conservancy.settings from conservancy.apps.fundgoal.models import FundraisingGoal as FundraisingGoal SITE_FUNDGOAL = 'cy2021-end-year-match' -# FIXME: Move this information into the model. -FUNDGOAL_ENDTIMES = { - # Noon UTC = the end of the previous day anywhere on Earth (AOE) - 'cy2018-end-year-match': DateTime(2019, 1, 16, 12, tzinfo=UTC), - 'cy2019-end-year-match': DateTime(2020, 1, 16, 12, tzinfo=UTC), - 'cy2020-end-year-match': DateTime(2021, 1, 16, 12, tzinfo=UTC), - 'cy2021-end-year-match': DateTime(2021, 1, 16, 12, tzinfo=UTC), -} def fundgoal_lookup(fundraiser_sought): try: @@ -23,9 +15,8 @@ def fundgoal_lookup(fundraiser_sought): def sitefundraiser(request): return { - 'datetime_now': DateTime.now(UTC), + 'datetime_now': DateTime.now(), 'sitefundgoal': fundgoal_lookup(SITE_FUNDGOAL), - 'sitefundgoal_endtime': FUNDGOAL_ENDTIMES[SITE_FUNDGOAL], } if conservancy.settings.FORCE_CANONICAL_HOSTNAME: