diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-10-01 16:34:52 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-10-01 16:34:52 +0200 |
commit | 6d6e44b1597087dc7726fd1d407433f73621928c (patch) | |
tree | 8f7d5164febe82a530700cc4c99c48a155a9bf0b /archaeological_operations/models.py | |
parent | ab588ee03dc822e21dff0d0369300526aebddbdd (diff) | |
download | Ishtar-6d6e44b1597087dc7726fd1d407433f73621928c.tar.bz2 Ishtar-6d6e44b1597087dc7726fd1d407433f73621928c.zip |
Sheet person: fix related tables
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r-- | archaeological_operations/models.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 2218c1b6f..3be4dd95d 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -421,7 +421,9 @@ class Operation(ClosedItem, BaseHistorizedItem, OwnPerms, ValueGetter, 'finds_deadline_after': 'finds_deadline__gte', 'related_treatment': 'context_record__base_finds__find__upstream_treatment__id', - 'towns_label': 'towns' + 'towns_label': 'towns', + 'scientist__pk': 'scientist__pk', + 'in_charge__pk': 'in_charge__pk', } COL_LABELS = { |