summaryrefslogtreecommitdiffstats
path: root/templates/w3/betterform.html
diff options
context:
space:
mode:
authorYulqen <246857+yulqen@users.noreply.github.com>2024-04-23 11:22:21 +0100
committerGitHub <noreply@github.com>2024-04-23 11:22:21 +0100
commitceca6fa956b21c43263e53c328d619c4ede21914 (patch)
treea48384210cdc168e3bd3ccff6d6d516eeed9e748 /templates/w3/betterform.html
parent8b084e9fe7a5f3a04c32daf9a24f7f2cf67300f9 (diff)
parent0f951dcf029d4af284467543a3afdf5bf6581a20 (diff)
Merge pull request #22 from defencedigital/pyswitch
switched to Django
Diffstat (limited to 'templates/w3/betterform.html')
-rw-r--r--templates/w3/betterform.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/templates/w3/betterform.html b/templates/w3/betterform.html
new file mode 100644
index 0000000..4516291
--- /dev/null
+++ b/templates/w3/betterform.html
@@ -0,0 +1,21 @@
+{% for fieldset in form.fieldsets %}
+ <fieldset class="fieldset-{{ forloop.counter }} {{ fieldset.classes }}">
+ {% if fieldset.legend %}
+ <legend>{{ fieldset.legend }}</legend>
+ {% endif %}
+
+ {% if fieldset.description %}
+ <p class="description">{{ fieldset.description }}</p>
+ {% endif %}
+
+ {% for field in fieldset %}
+ {% if field.is_hidden %}
+ {{ field }}
+ {% else %}
+ {% include "w3/field.html" %}
+ {% endif %}
+ {% endfor %}
+ {% if not forloop.last or not fieldset_open %}
+ </fieldset>
+ {% endif %}
+{% endfor %}