X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/002577cf05a6730e8b1c97d1931d79758cbcbfdc..99f6dd4f1ff0390de9a9bbd4e3352b953cb9a235:/apps/funding/templatetags/funding_tags.py diff --git a/apps/funding/templatetags/funding_tags.py b/apps/funding/templatetags/funding_tags.py index eb60601ad..0d6064f70 100755 --- a/apps/funding/templatetags/funding_tags.py +++ b/apps/funding/templatetags/funding_tags.py @@ -1,5 +1,10 @@ +# -*- coding: utf-8 -*- +# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# from django import template from ..models import Offer +from ..utils import sanitize_payment_title register = template.Library() @@ -8,6 +13,10 @@ register = template.Library() def funding(context, offer=None, link=False, closeable=False, show_title=True, show_title_calling = True, add_class=""): if offer is None and context.get('funding_no_show_current') is None: offer = Offer.current() + is_current = True + elif offer is not None: + is_current = offer.is_current() + if offer is None: return {} @@ -15,7 +24,7 @@ def funding(context, offer=None, link=False, closeable=False, show_title=True, s return { 'offer': offer, 'sum': offer_sum, - 'is_current': offer.is_current(), + 'is_current': is_current, 'is_win': offer_sum >= offer.target, 'missing': offer.target - offer_sum, 'percentage': 100 * offer_sum / offer.target, @@ -39,4 +48,4 @@ def offer_status_more(offer): 'offer': offer, } - +register.filter(sanitize_payment_title)