blob: 2df3775ea3b5c679621d72b8c863f98e167a8510 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{% load i18n inline_formset table_form %}
<div class="modal-dialog modal-lg modal-dialog-centered">
<div class="modal-content" id='progress-content'>
<div class="modal-header">
<h2>{{page_name|safe}}</h2>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<form enctype="multipart/form-data" action="." method="post">{% csrf_token %}
<div class="modal-body body-scroll">
<div class='form'>
{% for error in form.non_field_errors %}
<p>{{ error }}</p>
{% endfor %}
{% bs_form form %}
</div>
</div>
<div class="modal-footer">
<button type="submit" id="submit_form" name='validate'
value="validate" class="btn btn-success">
{% trans "Modify" %}
</button>
</div>
</form>
</div>
</div>
|