It's 2012 all up in here
[mediagoblin.git] / mediagoblin / templates / mediagoblin / utils / wtforms.html
CommitLineData
76c9ea6b
WKG
1{#
2# GNU MediaGoblin -- federated, autonomous media hosting
cf29e8a8 3# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
76c9ea6b
WKG
4#
5# This program is free software: you can redistribute it and/or modify
6# it under the terms of the GNU Affero General Public License as published by
7# the Free Software Foundation, either version 3 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU Affero General Public License for more details.
14#
15# You should have received a copy of the GNU Affero General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17#}
8566cdda 18
528f9acd
CAW
19{# Generically render a field #}
20{% macro render_field_div(field) %}
4d4e5b43 21 {% if field.label.text -%}
49af00e4 22 <p class="form_field_label"><label for="{{ field.label.field_id }}">{{ _(field.label.text) }}</label></p>
4d4e5b43 23 {%- endif %}
aea6d577
JS
24 <div class="form_field_input">
25 {{ field }}
528f9acd
CAW
26 {%- if field.errors -%}
27 {% for error in field.errors %}
aea6d577 28 <p class="form_field_error">{{ error }}</p>
528f9acd
CAW
29 {% endfor %}
30 {%- endif %}
04a7b06d 31 {% if field.description -%}
9c196287 32 <p class="form_field_description">{{ _(field.description)|safe }}</p>
04a7b06d 33 {%- endif %}
528f9acd
CAW
34 </div>
35{%- endmacro %}
36
8566cdda
CAW
37{# Auto-render a form as a series of divs #}
38{% macro render_divs(form) -%}
39 {% for field in form %}
528f9acd 40 {{ render_field_div(field) }}
8566cdda
CAW
41 {% endfor %}
42{%- endmacro %}
43
44{# Auto-render a form as a table #}
ef7cdac5
CAW
45{% macro render_table(form) -%}
46 {% for field in form %}
47 <tr>
db3e0583 48 <th>{{ _(field.label.text) }}</th>
ef7cdac5
CAW
49 <td>
50 {{field}}
51 {% if field.errors %}
52 <br />
53 <ul class="errors">
54 {% for error in field.errors %}
55 <li>{{error}}</li>
56 {% endfor %}
57 </ul>
58 {% endif %}
59 </td>
60 </tr>
61 {% endfor %}
62{%- endmacro %}