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/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'archaeological_operations/models.py') diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 294d07847..76e258994 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -2959,7 +2959,7 @@ class AdministrativeAct(DocumentItem, BaseHistorizedItem, OwnPerms, ValueGetter, ), "index": SearchAltName(pgettext_lazy("key for text search", "index"), "index"), "ref_sra": SearchAltName( - pgettext_lazy("key for text search", "other-ref"), "ref_sra__iexact" + pgettext_lazy("key for text search", "internal-reference"), "ref_sra__iexact" ), "operation__code_patriarche": SearchAltName( pgettext_lazy("key for text search", "patriarche"), @@ -3169,7 +3169,7 @@ class AdministrativeAct(DocumentItem, BaseHistorizedItem, OwnPerms, ValueGetter, year = models.IntegerField(_("Year"), blank=True, null=True) act_object = models.TextField(_("Object"), blank=True, default="") ref_sra = models.CharField( - _("Other reference"), max_length=200, blank=True, null=True + _("Internal reference"), max_length=200, blank=True, null=True ) departments_label = models.TextField( _("Departments"), -- cgit v1.2.3