blob: 419d94c9a3e66873d44f0967e35863c23f502b7d (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
{% load i18n l10n inline_formset table_form %}
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h2><i class="fa fa-retweet"></i> {{ formset.form_label }}</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="{{url}}" method="post" id="qa-action">
{{ formset.management_form }}
{% csrf_token %}
<div class="modal-body body-scroll">
{% if excess %}
{% with alert_message=excess %}
{% include "blocks/bs_alert_message.html" %}
{% endwith %}{% endif %}
<div class='form'>
{% block main_form %}
<table class='w-100 inline-table text-center'>
<tr>
{% for field in formset.forms.0 %}
{% if field.name != 'pk' %}<th{% if not forloop.last %} rowspan='2'{% endif %}>
{% if field.label %}{{field.label}}{% else %}{% trans "Delete" %}{% endif %}</th>{% endif %}{% endfor %}
</tr>
<tr><td>({% trans "all"%} <input type='checkbox' name='check-all' class='check-all-relations'/>)</td></tr>
{% inline_formset _("Relations") formset.forms False %}
</table>
{% endblock %}
</div>
</div>
<div class="modal-footer">
{% block footer %}
<button type="submit" id="submit_form" name='validate'
value="validate" class="btn btn-success">
{% if action_name %}
{{ action_name }}
{% else %}
{% trans "Add/Modify" %}
{% endif %}
</button>
<button type="button" data-dismiss="modal"
aria-label="Close" class="btn btn-secondary">
{% trans "Close" %}
</button>
{% endblock %}
</div>
</form>
</div>
</div>
<script type="text/javascript">{% localize off %}
{% block js %}
{% endblock %}
$(document).ready(function(){
qa_action_register("{{url}}");
$(document).on("click", '.check-all-relations', function(){
$('input[id$="-DELETE"]:checkbox').prop('checked', $(this).is(':checked'));
});{% if window_id %}
console.log("{{window_id}}");
modal_on_close["modal-dynamic-form"] = reload_window_{{window_id}};
{% endif %}
{% block js_ready %}
{% endblock %}
});
{% endlocalize %}</script>
|