diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-12-03 16:14:20 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-28 12:15:22 +0100 |
commit | 7bc043c6e96706baa8ffff66d910437aea4492ec (patch) | |
tree | 5d658292ca339f6db9f6c4537850e352b0b26d99 /archaeological_finds | |
parent | a971793ef9759c6b99c674ba676607abd743e76b (diff) | |
download | Ishtar-7bc043c6e96706baa8ffff66d910437aea4492ec.tar.bz2 Ishtar-7bc043c6e96706baa8ffff66d910437aea4492ec.zip |
Container QA form: fix parent add - fix field layout (refs #4996 - refs #4997)
Diffstat (limited to 'archaeological_finds')
-rw-r--r-- | archaeological_finds/forms_treatments.py | 6 | ||||
-rw-r--r-- | archaeological_finds/templates/ishtar/forms/qa_find_treatment.html | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/archaeological_finds/forms_treatments.py b/archaeological_finds/forms_treatments.py index c62dbcc57..ad4966e51 100644 --- a/archaeological_finds/forms_treatments.py +++ b/archaeological_finds/forms_treatments.py @@ -407,9 +407,9 @@ class QAFindTreatmentForm(IshtarForm): container_to_change = forms.ChoiceField( label=_("Change "), required=True, choices=( - ('current-and-reference', _(u"current and reference containers")), - ('reference', _(u"the reference container")), - ('current', _(u"the current container")), + ('current-and-reference', _("reference and current containers")), + ('reference', _("the reference container")), + ('current', _("the current container")), ) ) collection = forms.BooleanField( diff --git a/archaeological_finds/templates/ishtar/forms/qa_find_treatment.html b/archaeological_finds/templates/ishtar/forms/qa_find_treatment.html index c7944f2a0..e8d00cb33 100644 --- a/archaeological_finds/templates/ishtar/forms/qa_find_treatment.html +++ b/archaeological_finds/templates/ishtar/forms/qa_find_treatment.html @@ -21,12 +21,14 @@ </div>{% endif %} {% endfor %} <div class="form-row"> + {% with force_large_col=True %} {% 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 %} + {% endwith %} </div> <div class="form-row"> {{ form.collection }} <label for="{{form.collection.auto_id}}"> |