diff options
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 |
commit | ba2c713fd818e209bc5c894e45fe1fc17532a20c (patch) | |
tree | 4cf14347e35586fa0e8dbb6e075bd9e12243caa9 /archaeological_finds/templates | |
parent | 52257bb404da82db28d497c3ece6de4b959e1fb9 (diff) | |
download | Ishtar-ba2c713fd818e209bc5c894e45fe1fc17532a20c.tar.bz2 Ishtar-ba2c713fd818e209bc5c894e45fe1fc17532a20c.zip |
QA packaging: can associate collection
Diffstat (limited to 'archaeological_finds/templates')
-rw-r--r-- | archaeological_finds/templates/ishtar/forms/qa_find_treatment.html | 12 |
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 }} <label for="{{form.collection.auto_id}}"> + {% trans "Associate to the collection of the container" %} + </label> + </div> <div class="form-row"> {{ form.create_treatment }} <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 %} |