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:22:47 +0100 |
commit | fab8f18b037ebc2963092bf08b9980cab2a0d2ef (patch) | |
tree | ffcbd67fd89000869979add5fb538780e394a190 | |
parent | 2ea9019e0de178a59b05eda027269d230628e8c8 (diff) | |
download | Ishtar-fab8f18b037ebc2963092bf08b9980cab2a0d2ef.tar.bz2 Ishtar-fab8f18b037ebc2963092bf08b9980cab2a0d2ef.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 9a740057f..8a16a53ce 100644 --- a/archaeological_warehouse/forms.py +++ b/archaeological_warehouse/forms.py @@ -769,7 +769,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 ), @@ -777,7 +777,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"], |