headers about data
[edumed.git] / contact / widgets.py
diff --git a/contact/widgets.py b/contact/widgets.py
new file mode 100644 (file)
index 0000000..ddcf3cf
--- /dev/null
@@ -0,0 +1,10 @@
+# -*- coding: utf-8 -*-
+from django import forms
+from django.forms.util import flatatt
+from django.utils.html import format_html
+
+
+class HeaderWidget(forms.widgets.Widget):
+    def render(self, name, value, attrs=None):
+        attrs.update(self.attrs)
+        return format_html('<a{0}></a>', flatatt(attrs))