diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-12 19:46:52 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-17 13:22:54 +0200 |
commit | 2590fb7a15f4c1d99da9340c0eda3365d1ef84ef (patch) | |
tree | b306ec0bc66b79738a37f0c65c9e267f0786dbaf /archaeological_finds/views.py | |
parent | 6527235dd2bbe0c15932dbd6d496858e4898b4ba (diff) | |
download | Ishtar-2590fb7a15f4c1d99da9340c0eda3365d1ef84ef.tar.bz2 Ishtar-2590fb7a15f4c1d99da9340c0eda3365d1ef84ef.zip |
Fix custom table for find treatments
Diffstat (limited to 'archaeological_finds/views.py')
-rw-r--r-- | archaeological_finds/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_finds/views.py b/archaeological_finds/views.py index 7b7bf20ad..2282e0c5d 100644 --- a/archaeological_finds/views.py +++ b/archaeological_finds/views.py @@ -65,7 +65,7 @@ get_find_for_ope = get_item(models.Find, 'get_find', 'find', get_find_for_treatment = get_item( models.Find, 'get_find', 'find', - own_table_cols=models.Find.TABLE_COLS_FOR_OPE, base_request={}) + own_table_cols=get_table_cols_for_ope(), base_request={}) autocomplete_find = get_autocomplete_item(model=models.Find) |