source: asadb/template/form_utils/better_form.html

space-accessstablestage
Last change on this file was 3ce730f, checked in by Alex Dehnert <adehnert@…>, 14 years ago

Clarify how to compute membership numbers

  • Property mode set to 100644
File size: 456 bytes
Line 
1{% extends "form_utils/form.html" %}
2
3{% block fields %}
4{% for fieldset in form.fieldsets %}
5<fieldset class="{{ fieldset.classes }}">
6{% if fieldset.legend %}
7<legend>{{ fieldset.legend }}</legend>
8{% endif %}
9{% if fieldset.description %}
10<p>{{ fieldset.description }}</p>
11{% endif %}
12<table class='pretty-table'>
13{% with fieldset as fields %}
14{% include "form_utils/fields_as_trs.html" %}
15{% endwith %}
16</table>
17</fieldset>
18{% endfor %}
19{% endblock %}
Note: See TracBrowser for help on using the repository browser.