diff options
author | Cefin <kevon@tuta.io> | 2022-08-17 09:48:55 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-12 12:23:17 +0100 |
commit | 5d9d9a35eb15eb5cfee880ca1ef185dcf16b2817 (patch) | |
tree | 3ce6ae733489b2eefaf9aa339497d0e48c591955 /archaeological_finds | |
parent | 30017b9b88d78112325ed89c4d11a2a72a54a64a (diff) | |
download | Ishtar-5d9d9a35eb15eb5cfee880ca1ef185dcf16b2817.tar.bz2 Ishtar-5d9d9a35eb15eb5cfee880ca1ef185dcf16b2817.zip |
WIP: add "is locked" search (refs #5419)
Diffstat (limited to 'archaeological_finds')
-rw-r--r-- | archaeological_finds/models_finds.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_finds/models_finds.py b/archaeological_finds/models_finds.py index d0e31c3e8..fb695ba73 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -1176,7 +1176,7 @@ class Find( "documents__associated_url__isnull", "documents__associated_file__isnull", ] - BOOL_FIELDS = ["is_complete"] + BOOL_FIELDS = BaseHistorizedItem.BOOL_FIELDS + ["is_complete"] CALLABLE_BOOL_FIELDS = ["loan"] RELATION_TYPES_PREFIX = { "ope_relation_types": "base_finds__context_record__operation__", |