forked from DGNum/gestioCOF
41 lines
1.3 KiB
HTML
41 lines
1.3 KiB
HTML
|
{{ formset.non_form_errors.as_ul }}
|
||
|
<table id="bda_formset" class="form">
|
||
|
{{ formset.management_form }}
|
||
|
{% for form in formset.forms %}
|
||
|
{% if forloop.first %}
|
||
|
<thead><tr>
|
||
|
{% for field in form.visible_fields %}
|
||
|
<th class="bda-field-{{ field.name }}">
|
||
|
{% if field.name != "DELETE" %}
|
||
|
{{ field.label|safe|capfirst }}
|
||
|
{% endif %}
|
||
|
<sup>{{ forloop.counter }}</sup>
|
||
|
</th>
|
||
|
{% endfor %}
|
||
|
</tr></thead>
|
||
|
<tbody class="bda_formset_content">
|
||
|
{% endif %}
|
||
|
<tr class="{% cycle row1,row2 %} dynamic-form {% if form.instance.pk %}has_original{% endif %}">
|
||
|
{% for field in form.visible_fields %}
|
||
|
{% if field.name != "DELETE" and field.name != "priority" %}
|
||
|
<td class="bda-field-{{ field.name }}">
|
||
|
{% if forloop.first %}
|
||
|
{{ form.non_field_errors }}
|
||
|
{% for hidden in form.hidden_fields %}{{ hidden }}{% endfor %}
|
||
|
{% endif %}
|
||
|
{{ field.errors.as_ul }}
|
||
|
{{ field }}
|
||
|
</td>
|
||
|
{% endif %}
|
||
|
{% endfor %}
|
||
|
<td class="tools-cell"><div class="tools">
|
||
|
<input type="checkbox" name="{{ form.DELETE.html_name }}" style="display: none;" />
|
||
|
<a href="javascript://" class="icon delete-handler" title="Supprimer"></a>
|
||
|
</div>
|
||
|
<div class="spacer"></div>
|
||
|
</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|