summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2026-01-20 14:37:19 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2026-01-20 17:28:08 +0100
commit115607e28f8bbecabca357e3f9295f66b2a05854 (patch)
treeb1978f350a667fb484ea8bc2eec96a56a9f29db7
parent85d4e5211857c9e88792b436b6a313e537eefc81 (diff)
downloadIshtar-115607e28f8bbecabca357e3f9295f66b2a05854.tar.bz2
Ishtar-115607e28f8bbecabca357e3f9295f66b2a05854.zip
✨ statistics - archaeological sites: add modalities (refs #6567)
-rw-r--r--archaeological_operations/models.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py
index 66642e89e..1d6fabc33 100644
--- a/archaeological_operations/models.py
+++ b/archaeological_operations/models.py
@@ -385,10 +385,15 @@ class ArchaeologicalSite(
STATISTIC_MODALITIES_OPTIONS = OrderedDict(
[
- ("towns__areas__label", _("Area")),
- ("towns__areas__parent__label", _("Extended area")),
+ ("types__label", _("Types")),
("periods__label", _("Periods")),
("remains__label", _("Remains")),
+ ("towns__areas__label", _("Area")),
+ ("towns__areas__parent__label", _("Extended area")),
+ ("discovery_status__label", _("Discovery status")),
+ ("current_status__label", _("Current status")),
+ ("nature_of_site__label", _("Nature of site")),
+ ("interpretation_level__label", _("Interpretation level")),
("documents__source_type__label", _("Associated document type")),
("last_modified__FILTERyear", _("Modification (year)")),
]