X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/a4d28c35907d5b4e4a3c4bd0ae289d00afdec69d..HEAD:/src/contact/fields.py diff --git a/src/contact/fields.py b/src/contact/fields.py index ce85c2291..4164af889 100644 --- a/src/contact/fields.py +++ b/src/contact/fields.py @@ -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('' + conditional_escape(self.label) + '') + self.label_suffix = '' class SeparatorField(HeaderField):