X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/8d1372958ce4a205f11fcdd44cf6e9cac8429a69..002577cf05a6730e8b1c97d1931d79758cbcbfdc:/apps/funding/templatetags/funding_tags.py diff --git a/apps/funding/templatetags/funding_tags.py b/apps/funding/templatetags/funding_tags.py index c533672b5..eb60601ad 100755 --- a/apps/funding/templatetags/funding_tags.py +++ b/apps/funding/templatetags/funding_tags.py @@ -4,14 +4,39 @@ from ..models import Offer register = template.Library() -@register.inclusion_tag("funding/tags/funding.html") -def funding(offer=None, link=False, add_class=""): - if offer is None: +@register.inclusion_tag("funding/tags/funding.html", takes_context=True) +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() + if offer is None: + return {} + offer_sum = offer.sum() return { 'offer': offer, - 'percentage': 100 * offer.sum() / offer.target, + 'sum': offer_sum, + 'is_current': offer.is_current(), + 'is_win': offer_sum >= offer.target, + 'missing': offer.target - offer_sum, + 'percentage': 100 * offer_sum / offer.target, 'link': link, + 'closeable': closeable, + 'show_title': show_title, + 'show_title_calling': show_title_calling, 'add_class': add_class, } + + +@register.inclusion_tag("funding/tags/offer_status.html") +def offer_status(offer): + return { + 'offer': offer, + } + +@register.inclusion_tag("funding/tags/offer_status_more.html") +def offer_status_more(offer): + return { + 'offer': offer, + } + +