Fundraising in PDF.
[wolnelektury.git] / src / contact / fields.py
index ce85c22..4164af8 100644 (file)
@@ -1,5 +1,5 @@
-# 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 forms
 from django.utils.html import conditional_escape
@@ -13,6 +13,7 @@ class HeaderField(forms.CharField):
             widget = HeaderWidget
         super(HeaderField, self).__init__(required=False, widget=widget, *args, **kwargs)
         self.label = mark_safe('<b>' + conditional_escape(self.label) + '</b>')
+        self.label_suffix = ''
 
 
 class SeparatorField(HeaderField):