diff options
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r-- | archaeological_operations/models.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index ae52e5cbe..bb41848a5 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -923,7 +923,7 @@ class Operation( "documentation_received", "finds_received", ] - MANY_COUNTED_FIELDS = ["context_record__base_finds"] + MANY_COUNTED_FIELDS = ["context_record__base_finds__isnull"] REVERSED_BOOL_FIELDS = [ "documents__image__isnull", "documents__associated_file__isnull", @@ -1154,7 +1154,7 @@ class Operation( ), "has_finds": SearchAltName( pgettext_lazy("key for text search", "has-finds"), - "context_record__base_finds", + "context_record__base_finds__isnull", ), "finds_deadline_before": SearchAltName( pgettext_lazy("key for text search", "finds-deadline-before"), |