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
RevLine 
[451b708]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 %}
[3ce730f]9{% if fieldset.description %}
10<p>{{ fieldset.description }}</p>
11{% endif %}
[4bc3ab9]12<table class='pretty-table'>
[451b708]13{% with fieldset as fields %}
[4bc3ab9]14{% include "form_utils/fields_as_trs.html" %}
[451b708]15{% endwith %}
[4bc3ab9]16</table>
[451b708]17</fieldset>
18{% endfor %}
19{% endblock %}
Note: See TracBrowser for help on using the repository browser.