blob: 4355315945051635fd95fc1d9fdc9a9fea52ccaf (
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
|
{% extends "ishtar/forms/qa_base.html" %}
{% load i18n inline_formset table_form %}
{% block main_form %}
{% if new_item_pk %}
<p>{% if new_item_label %}{{new_item_label}}{% else %}{% trans "Item" %}{% endif %}
{% if modify %}{% trans "modified." %}{% else %}{% trans "created." %}{% endif %}</p>
{% else %}
{% bs_compact_form form %}
{% endif %}
{% endblock %}
{% block footer %}
{% if new_item_pk %}
<button type="button" data-dismiss="modal"
aria-label="Close" class="btn btn-secondary">
{% trans "Close" %}
</button>
{% else %}
{{ block.super }}
{% endif %}
{% endblock %}
{% block js_ready %}
{% if new_item_pk %}
save_and_close_window{% if many %}_many{% endif %}_data(null, "{{parent_name}}", "{{parent_pk}}", "{{new_item_label|safe}}", "{{new_item_pk}}");
{% endif %}
{% endblock %}
|