diff options
author | Yulqen <246857+yulqen@users.noreply.github.com> | 2024-09-05 12:03:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-05 12:03:42 +0100 |
commit | acf9ad680f7c4c8a1283b21ab4cc3df112955530 (patch) | |
tree | 0ee570cc70236717928df26bdea7b231c4de8f26 /templates/w3/betterform.html | |
parent | 4187f41b48814b3c13ac75a6a9f57dd4efcaaa4c (diff) | |
parent | 707128730185f67d24ccfed2a9c7056129478fec (diff) |
Merge pull request #102 from defencedigital/postgres-migration
Postgres migration
Diffstat (limited to 'templates/w3/betterform.html')
-rw-r--r-- | templates/w3/betterform.html | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/templates/w3/betterform.html b/templates/w3/betterform.html deleted file mode 100644 index 4516291..0000000 --- a/templates/w3/betterform.html +++ /dev/null @@ -1,21 +0,0 @@ -{% 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 %} |