diff options
Diffstat (limited to 'archaeological_operations')
-rw-r--r-- | archaeological_operations/models.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 1567fecc6..ae52e5cbe 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -310,8 +310,6 @@ class ArchaeologicalSite( DATED_FIELDS = BaseHistorizedItem.DATED_FIELDS + ["sinking_date"] - BOOL_FIELDS = BaseHistorizedItem.BOOL_FIELDS - EXTRA_REQUEST_KEYS = { "towns_label": "towns", "collaborators__pk": "collaborators__pk", # dynamic_table_documents @@ -919,7 +917,7 @@ class Operation( STATISTIC_MODALITIES = [key for key, lbl in STATISTIC_MODALITIES_OPTIONS.items()] # search parameters - BOOL_FIELDS = [ + BOOL_FIELDS = BaseHistorizedItem.BOOL_FIELDS + [ "end_date__isnull", "virtual_operation", "documentation_received", |