diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-09-17 18:19:42 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-12 12:23:18 +0100 |
commit | 246144ef6ee26120067576c9bf5c186d6b11cd36 (patch) | |
tree | 889c5145204f87ced3f473cd0ca4be4fae8f4844 /archaeological_operations/models.py | |
parent | b5458d391664118fff9740f40cd0fba988ea78e7 (diff) | |
download | Ishtar-246144ef6ee26120067576c9bf5c186d6b11cd36.tar.bz2 Ishtar-246144ef6ee26120067576c9bf5c186d6b11cd36.zip |
Admin act: ref_sra 15 -> 200
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, |