9 lines
230 B
HTML
9 lines
230 B
HTML
|
{% with formset.management_form as form %}
|
||
|
{% include 'bootstrap3/uni_form.html' %}
|
||
|
{% endwith %}
|
||
|
{% for form in formset %}
|
||
|
<div class="multiField">
|
||
|
{% include 'bootstrap3/uni_form.html' %}
|
||
|
</div>
|
||
|
{% endfor %}
|