blob: 02f60e6c09812770468b7f100bd91357dec7279f (
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
|
{% extends "ishtar/forms/qa_base.html" %}
{% load i18n inline_formset table_form %}
{% block main_form %}
{% if form.non_field_errors %}
<div class="alert alert-danger" role="alert">
{{form.non_field_errors}}
</div>
{% endif %}
<h4>{% trans "Documents" %}</h4>
<ul>{% for item in items %}
<li>{{item}}</li>{% endfor %}
</ul>
<h4>{% trans "Packaging" %}</h4>
{% for hidden in form.hidden_fields %}
{{hidden}}
{% if hidden.errors %}<div class="invalid-feedback">
{{ hidden.errors }}
</div>{% endif %}
{% endfor %}
<div class="form-row">
{% with form.container as field %}
{% include "blocks/bs_field_snippet.html" %}
{% endwith %}
{% with form.container_to_change as field %}
{% include "blocks/bs_field_snippet.html" %}
{% endwith %}
</div>
{% endblock %}
|