X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/cda147aa999b09a14dacb097d91638f6b9cca236..8af0d74b3799a691fb29468f9ade870a28ff2622:/apps/funding/templatetags/funding_tags.py diff --git a/apps/funding/templatetags/funding_tags.py b/apps/funding/templatetags/funding_tags.py index bfac2654e..7ebc72675 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, add_class=""): if offer is None and context.get('funding_no_show_current') is None: offer = Offer.current() if offer is None: @@ -20,6 +20,8 @@ def funding(context, offer=None, link=False, add_class=""): 'missing': offer.target - offer_sum, 'percentage': 100 * offer_sum / offer.target, 'link': link, + 'closeable': closeable, + 'show_title': show_title, 'add_class': add_class, }