From fd5e330ede426a7152deab41620b6a60b63df220 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 16 Sep 2024 19:04:34 +0200 Subject: 🗃️ context records new fields, default values, admin interface - town add notice (refs #6024) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Town: - notice Context records: - excavated length - excavated width - structure - texture - colors - details on colors - inclusions --- ishtar_common/models_common.py | 1 + 1 file changed, 1 insertion(+) (limited to 'ishtar_common/models_common.py') diff --git a/ishtar_common/models_common.py b/ishtar_common/models_common.py index 98dbb047b..9aec54534 100644 --- a/ishtar_common/models_common.py +++ b/ishtar_common/models_common.py @@ -3398,6 +3398,7 @@ class Town(GeographicItem, Imported, DocumentItem, MainItem, models.Model): ) limit = models.MultiPolygonField(_("Limit"), blank=True, null=True) numero_insee = models.CharField("Code commune (numéro INSEE)", max_length=120) + notice = models.TextField(_("Notice"), blank=True, default="") departement = models.ForeignKey( Department, verbose_name=_("Department"), -- cgit v1.2.3