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 | 778599f6ab4cca52601e934e811769ecc32e6868 (patch) | |
tree | 8f7d5164febe82a530700cc4c99c48a155a9bf0b /archaeological_operations/models.py | |
parent | 87e688aa12067a9368617ea635189b45954ebee4 (diff) | |
download | Ishtar-778599f6ab4cca52601e934e811769ecc32e6868.tar.bz2 Ishtar-778599f6ab4cca52601e934e811769ecc32e6868.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 = { |