From d2c9fab7e330f3c5db660ee65af8db5c9d41370b Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 12 Mar 2025 10:52:35 +0100 Subject: 🐛 administrative act: fix internal reference label (refs #6185) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- archaeological_operations/forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'archaeological_operations/forms.py') diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index a7d191dd8..0c6e65f83 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -1477,7 +1477,7 @@ class AdministrativeActOpeSelect(DocumentItemSelect): )) year = forms.IntegerField(label=_("Year")) index = forms.IntegerField(label=_("Index")) - ref_sra = forms.CharField(label=_("Other reference"), max_length=200) + ref_sra = forms.CharField(label=_("Internal reference"), max_length=200) operation__code_patriarche = forms.CharField( max_length=500, widget=OAWidget, @@ -1542,7 +1542,7 @@ class AdministrativeActForm(CustomForm, ManageOldType): widget=forms.Textarea, required=False) signature_date = DateField(label=_("Signature date"), required=False) comment = forms.CharField(label=_("Comment"), widget=forms.Textarea, required=False) - ref_sra = forms.CharField(label=_("Other reference"), max_length=200, required=False) + ref_sra = forms.CharField(label=_("Internal reference"), max_length=200, required=False) TYPES = [ FieldType('act_type', models.ActType, -- cgit v1.2.3