Fix title underline error in faq.rst
[ganeti_webmgr.git] / muddle / templates / edit / form_fields_list.html
blob6c4d45b5e189a3f2ce21d1d365d8c4174d3732a8
1 <h2 class="selector">{{name|capfirst}}</h2>
2 <table>
3 <tr>
4 {% for field in form.instances.0 %}
5 <th>{{ field.label_tag }}</th>
6 {% endfor %}
7 </tr>
9 {% for instance in form.instances %}
10 <tr>
11 {% for field in instance %}
12 <td class="field" title="{{field.help_text}}">{{field}}</td>
13 {% endfor %}
14 </tr>
15 {% endfor %}
16 </table>