diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-10-21 14:59:26 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-10-21 14:59:26 +0200 |
commit | 9f2605ac1290b25b8eab626bf1d5b8b68b049092 (patch) | |
tree | 05157efc0c9a188823372bb8f171912add11e2e1 /archaeological_operations/models.py | |
parent | 82fa5eed0e7a25b93c56c97011d454e595665b65 (diff) | |
download | Ishtar-9f2605ac1290b25b8eab626bf1d5b8b68b049092.tar.bz2 Ishtar-9f2605ac1290b25b8eab626bf1d5b8b68b049092.zip |
Fix search parameters (refs #3064)
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r-- | archaeological_operations/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index ac64c474f..fbac96975 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -929,7 +929,7 @@ class AdministrativeAct(BaseHistorizedItem, OwnPerms, ValueGetter): 'signature_date_after': 'signature_date__gte', 'year': 'signature_date__year', } - REVERSED_BOOL_FIELDS = ['index__isnull'], + REVERSED_BOOL_FIELDS = ['index__isnull'] RELATIVE_SESSION_NAMES = [('operation', 'operation__pk'), ('file', 'associated_file__pk')] |