Fundraising in PDF.
[wolnelektury.git] / src / funding / templatetags / funding_tags.py
old mode 100755 (executable)
new mode 100644 (file)
index ece7ba2..9823dc4
@@ -1,12 +1,11 @@
-# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
-# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
+# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
 #
 from django import template
 from django.template.loader import render_to_string
 from django.core.paginator import Paginator, InvalidPage
 
 from ..models import Offer
-from ..utils import sanitize_payment_title
 
 
 register = template.Library()
@@ -18,9 +17,6 @@ def funding_top_bar():
     return offer.top_bar() if offer is not None else ''
 
 
-register.filter(sanitize_payment_title)
-
-
 @register.simple_tag(takes_context=True)
 def fundings(context, offer):
     fundings = offer.funding_payed()