From f8f5b9b88d2795c4a9c1273906eb85517b05ac71 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 29 Feb 2024 11:21:34 +0100 Subject: 🏷️ Container forms: ID -> Index (refs #5780) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- archaeological_warehouse/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archaeological_warehouse/forms.py b/archaeological_warehouse/forms.py index 6845a2771..68f2fceba 100644 --- a/archaeological_warehouse/forms.py +++ b/archaeological_warehouse/forms.py @@ -456,7 +456,7 @@ class ContainerForm(CustomForm, ManageOldType, forms.Form): class ContainerModifyForm(ContainerForm): pk = forms.IntegerField(required=False, widget=forms.HiddenInput) - index = forms.IntegerField(label=_("ID"), required=False) + index = forms.IntegerField(label=_("Index"), required=False) def __init__(self, *args, **kwargs): super(ContainerModifyForm, self).__init__(*args, **kwargs) -- cgit v1.2.3