blob: 3c07cdf6597220d1cdebefc07320695cf036f883 (
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
|
{% 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 %}
<div class="form-row">
{% with form.qa_code_patriarche as field %}
{% include "blocks/bs_field_snippet.html" %}
{% endwith %}
</div>
{% with force_large_col=True %}
<div class="form-row">
{% with form.qa_year as field %}
{% include "blocks/bs_field_snippet.html" %}
{% endwith %}
</div>
<div class="form-row">
{% with form.qa_common_name as field %}
{% include "blocks/bs_field_snippet.html" %}
{% endwith %}
</div>
<div class="form-row">
{% with form.qa_operation_type as field %}
{% include "blocks/bs_field_snippet.html" %}
{% endwith %}
</div>
{% endwith %}
{% comment %}
<p>
<label for="id_modify">{% trans "Edit the duplicated find" %}{% trans ":" %}</label>
<input type="checkbox" name="modify" id="id_modify">
</p>
{% endcomment %}
{% endblock %}
|