From 209ef150fcf5e5983ceeab011217e42d00872372 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 13 Mar 2025 16:16:50 +0100 Subject: 🏷️ quick move form: more explicits labels (refs #6164) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- archaeological_warehouse/forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'archaeological_warehouse/forms.py') 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"], -- cgit v1.2.3