X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/2a8b16aa45fb2b17f92068016ec72f93ccdef776..f9ebfca6f51df543810066816ce90b79932cd458:/apps/funding/templatetags/funding_tags.py?ds=sidebyside diff --git a/apps/funding/templatetags/funding_tags.py b/apps/funding/templatetags/funding_tags.py index d50551a38..eb60601ad 100755 --- a/apps/funding/templatetags/funding_tags.py +++ b/apps/funding/templatetags/funding_tags.py @@ -5,7 +5,7 @@ register = template.Library() @register.inclusion_tag("funding/tags/funding.html", takes_context=True) -def funding(context, offer=None, link=False, add_class=""): +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: @@ -16,9 +16,13 @@ def funding(context, offer=None, link=False, add_class=""): 'offer': offer, '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, }