-# 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
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):