summaryrefslogtreecommitdiff
path: root/archaeological_finds/templates
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2020-04-28 13:04:25 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2021-02-28 12:15:20 +0100
commit2a0ba35f42b2b981e5bed7f72952bc30577fd25c (patch)
tree4cf14347e35586fa0e8dbb6e075bd9e12243caa9 /archaeological_finds/templates
parente817ea1f7286523497bb81a897f4ffc2539f7e2c (diff)
downloadIshtar-2a0ba35f42b2b981e5bed7f72952bc30577fd25c.tar.bz2
Ishtar-2a0ba35f42b2b981e5bed7f72952bc30577fd25c.zip
QA packaging: can associate collection
Diffstat (limited to 'archaeological_finds/templates')
-rw-r--r--archaeological_finds/templates/ishtar/forms/qa_find_treatment.html12
1 files changed, 7 insertions, 5 deletions
diff --git a/archaeological_finds/templates/ishtar/forms/qa_find_treatment.html b/archaeological_finds/templates/ishtar/forms/qa_find_treatment.html
index 38db02ff4..c7944f2a0 100644
--- a/archaeological_finds/templates/ishtar/forms/qa_find_treatment.html
+++ b/archaeological_finds/templates/ishtar/forms/qa_find_treatment.html
@@ -24,23 +24,25 @@
{% with form.container as field %}
{% include "blocks/bs_field_snippet.html" %}
{% endwith %}
- </div>
-
- <div class="form-row">
{% with form.container_to_change as field %}
{% include "blocks/bs_field_snippet.html" %}
{% endwith %}
</div>
+ <div class="form-row">
+ {{ form.collection }}&nbsp;<label for="{{form.collection.auto_id}}">
+ {% trans "Associate to the collection of the container" %}
+ </label>
+ </div>
<div class="form-row">
{{ form.create_treatment }}&nbsp;<label for="{{form.create_treatment.auto_id}}">
- {% trans "Associate a treatment" %}
+ {% trans "Associate a treatment" %}
</label>
</div>
<div id="new-treatment">
<div class="form-row">
{% with force_large_col=false %}{% for field in form %}
- {% if field.name != 'container_to_change' and field.name != 'container' and field.name != 'create_treatment' %}
+ {% if field.name != 'container_to_change' and field.name != 'collection' and field.name != 'container' and field.name != 'create_treatment' %}
{% include "blocks/bs_field_snippet.html" %}
{% endif %}
{% endfor %}{% endwith %}