Moved get_license_data to mixin.py, added license to sql media model, added translati...
[mediagoblin.git] / mediagoblin / templates / mediagoblin / utils / wtforms.html
1 {#
2 # GNU MediaGoblin -- federated, autonomous media hosting
3 # Copyright (C) 2011 MediaGoblin contributors. See AUTHORS.
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 #}
18
19 {# Generically render a field #}
20 {% macro render_field_div(field) %}
21 {% if field.label.text -%}
22 <p class="form_field_label"><label for="{{ field.label.field_id }}">{{ _(field.label.text) }}</label></p>
23 {%- endif %}
24 <div class="form_field_input">
25 {{ field }}
26 {%- if field.errors -%}
27 {% for error in field.errors %}
28 <p class="form_field_error">{{ error }}</p>
29 {% endfor %}
30 {%- endif %}
31 {% if field.description -%}
32 <p class="form_field_description">{{ _(field.description)|safe }}</p>
33 {%- endif %}
34 </div>
35 {%- endmacro %}
36
37 {# Auto-render a form as a series of divs #}
38 {% macro render_divs(form) -%}
39 {% for field in form %}
40 {{ render_field_div(field) }}
41 {% endfor %}
42 {%- endmacro %}
43
44 {# Auto-render a form as a table #}
45 {% macro render_table(form) -%}
46 {% for field in form %}
47 <tr>
48 <th>{{ _(field.label.text) }}</th>
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 %}