diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-04-10 10:22:08 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-04-16 16:43:03 +0200 |
commit | 440e5021bd0eb229d369d6e91c084e53fe097b23 (patch) | |
tree | 80e1e0b4e0d56a2f836fb90ffc1beaca1117732b /archaeological_operations/forms.py | |
parent | 6eb800b65c10252bc27198d21eb52899e31bb8e0 (diff) | |
download | Ishtar-440e5021bd0eb229d369d6e91c084e53fe097b23.tar.bz2 Ishtar-440e5021bd0eb229d369d6e91c084e53fe097b23.zip |
✏️ Operation: rename "operation code" to "yearly index"
Diffstat (limited to 'archaeological_operations/forms.py')
-rw-r--r-- | archaeological_operations/forms.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/archaeological_operations/forms.py b/archaeological_operations/forms.py index 2b5e7c8f0..488f7d74e 100644 --- a/archaeological_operations/forms.py +++ b/archaeological_operations/forms.py @@ -488,7 +488,7 @@ class OperationSelect(GeoItemSelect): label=_("Full text search"), widget=widgets.SearchWidget( 'archaeological-operations', 'operation')) year = forms.IntegerField(label=_("Year")) - operation_code = forms.IntegerField(label=_("Numeric reference")) + operation_code = forms.IntegerField(label=_("Yearly index")) code_patriarche = forms.CharField( max_length=500, widget=OAWidget, @@ -918,17 +918,17 @@ class OperationFormGeneral(CustomForm, ManageOldType): Max('operation_code'))["operation_code__max"] if year and max_val: msg = _( - "Operation code already exists for year: %(year)d - use a " - "value bigger than %(last_val)d") % { + "This index already exists for year: %(year)d - use a " + "value bigger than %(last_val)d or empty the yearly index field.") % { 'year': year, 'last_val': max_val} else: - msg = _("Bad operation code") + msg = _("Bad operation index") raise forms.ValidationError(msg) return self.cleaned_data class OperationFormModifGeneral(OperationFormGeneral): - operation_code = forms.IntegerField(label=_("Operation code"), + operation_code = forms.IntegerField(label=_("Yearly index"), required=False) currents = {'associated_file': File} associated_file = forms.IntegerField( |