Fundraising in PDF.
[wolnelektury.git] / src / contact / widgets.py
1 # This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
3 #
4 from django import forms
5 from django.forms.utils import flatatt
6 from django.utils.html import format_html
7
8
9 class HeaderWidget(forms.widgets.Widget):
10     def render(self, name, value, attrs=None, renderer=None):
11         attrs.update(self.attrs)
12         return format_html('<a{0}></a>', flatatt(attrs))