diff options
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r-- | archaeological_operations/models.py | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 370b3c9b2..13b784539 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -2696,16 +2696,15 @@ class AdministrativeAct(DocumentItem, BaseHistorizedItem, OwnPerms, ValueGetter) signature_date = models.DateField(_("Signature date"), blank=True, null=True) year = models.IntegerField(_("Year"), blank=True, null=True) act_object = models.TextField(_("Object"), blank=True, default="") - if settings.COUNTRY == "fr": - ref_sra = models.CharField( - "Référence SRA", max_length=15, blank=True, null=True - ) - departments_label = models.TextField( - _("Departments"), - blank=True, - default="", - help_text=_("Cached values get from associated departments"), - ) + ref_sra = models.CharField( + _("Other reference"), max_length=200, blank=True, null=True + ) + departments_label = models.TextField( + _("Departments"), + blank=True, + default="", + help_text=_("Cached values get from associated departments"), + ) towns_label = models.TextField( _("Towns"), blank=True, |