diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-03-13 16:16:50 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-03-13 16:16:50 +0100 |
commit | 209ef150fcf5e5983ceeab011217e42d00872372 (patch) | |
tree | 5cd72fbb6ea0156a0a7478cf63f7cd1385b35920 | |
parent | 0c570f9ecababa6943852f067ac969886bed2c18 (diff) | |
download | Ishtar-209ef150fcf5e5983ceeab011217e42d00872372.tar.bz2 Ishtar-209ef150fcf5e5983ceeab011217e42d00872372.zip |
🏷️ quick move form: more explicits labels (refs #6164)
-rw-r--r-- | archaeological_warehouse/forms.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_warehouse/forms.py b/archaeological_warehouse/forms.py index edc4a3b74..1d3b9d1a0 100644 --- a/archaeological_warehouse/forms.py +++ b/archaeological_warehouse/forms.py @@ -764,7 +764,7 @@ class QAContainerFormMulti(QAForm): class QAContainerMoveForm(QABasePackagingForm): qalocation = forms.IntegerField( - label=_("Location"), + label=_("Warehouse"), widget=widgets.JQueryAutoComplete( reverse_lazy("autocomplete-warehouse"), associated_model=models.Warehouse ), @@ -772,7 +772,7 @@ class QAContainerMoveForm(QABasePackagingForm): required=False, ) qaparent = forms.IntegerField( - label=_("Parent"), + label=_("Parent container/location"), widget=widgets.JQueryAutoComplete( reverse_lazy("autocomplete-container"), dynamic_limit=["qalocation"], |