summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)")),
]