diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-09-09 12:52:27 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-28 12:15:20 +0100 |
commit | e538b5e3629c40e2a04dc354209fbae86ee07cf0 (patch) | |
tree | b244376b7a769df8a9c5c48ce0ecfad204bcbfc3 /archaeological_finds/models_finds.py | |
parent | d2b8f1997ec52e8f32d6fa680d7107ee9421bd31 (diff) | |
download | Ishtar-e538b5e3629c40e2a04dc354209fbae86ee07cf0.tar.bz2 Ishtar-e538b5e3629c40e2a04dc354209fbae86ee07cf0.zip |
Sheet warehouse: display find inside/owned by the warehouse
Diffstat (limited to 'archaeological_finds/models_finds.py')
-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 b893951b7..2faf97d1d 100644 --- a/archaeological_finds/models_finds.py +++ b/archaeological_finds/models_finds.py @@ -937,7 +937,7 @@ class Find(BulkUpdatedItem, ValueGetter, DocumentItem, BaseHistorizedItem, 'cached_label': 'cached_label__icontains', 'documents__image__isnull': 'documents__image__isnull', 'container__location': 'container__location__pk', - 'container__responsible': 'container__responsible__pk', + 'container_ref__location': 'container_ref__location__pk', } for table in (TABLE_COLS, TABLE_COLS_FOR_OPE): for key in table: |