diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-03-12 10:52:35 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2025-03-13 15:48:10 +0100 |
commit | d2c9fab7e330f3c5db660ee65af8db5c9d41370b (patch) | |
tree | 17b034cac8eb87b006f1d84234cf1134a5d1f7eb /archaeological_operations/forms.py | |
parent | 0d2e4f60e8ce2f42359c2feb7360eb0ed72ad82b (diff) | |
download | Ishtar-d2c9fab7e330f3c5db660ee65af8db5c9d41370b.tar.bz2 Ishtar-d2c9fab7e330f3c5db660ee65af8db5c9d41370b.zip |
🐛 administrative act: fix internal reference label (refs #6185)
Diffstat (limited to 'archaeological_operations/forms.py')
-rw-r--r-- | archaeological_operations/forms.py | 4 |
1 files changed, 2 insertions, 2 deletions
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, |