diff options
Diffstat (limited to 'archaeological_warehouse/forms.py')
-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"], |