summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archaeological_warehouse/forms.py4
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"],