X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/09afe5bd72a407c6d6474ccce467b7a9dddda0bf..dbb1ae2cf25105f7a3831961b08386a1326baef8:/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 5c6544a8f..1a7c872a4 100755 --- a/apps/funding/templatetags/funding_tags.py +++ b/apps/funding/templatetags/funding_tags.py @@ -1,11 +1,16 @@ +# -*- 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() @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=""): +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 @@ -36,11 +41,11 @@ def offer_status(offer): return { 'offer': offer, } - + @register.inclusion_tag("funding/tags/offer_status_more.html") def offer_status_more(offer): return { 'offer': offer, } - +register.filter(sanitize_payment_title)