summaryrefslogtreecommitdiff
path: root/archaeological_finds
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2016-03-07 17:43:24 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2016-03-07 17:43:24 +0100
commit717d58175a9a637e2266995a252b38159d86527c (patch)
tree9e52a411e30cf9eca07f5b5f005139a10f13552d /archaeological_finds
parentc095ce33a5233176f0a8d46d146e1f6902f0ca58 (diff)
downloadIshtar-717d58175a9a637e2266995a252b38159d86527c.tar.bz2
Ishtar-717d58175a9a637e2266995a252b38159d86527c.zip
Force submited attribute to dynamic tables (refs #3074)
Diffstat (limited to 'archaeological_finds')
-rw-r--r--archaeological_finds/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archaeological_finds/views.py b/archaeological_finds/views.py
index 3321b9925..afe6715a8 100644
--- a/archaeological_finds/views.py
+++ b/archaeological_finds/views.py
@@ -63,13 +63,13 @@ get_find = get_item(
models.Find, 'get_find', 'find',
reversed_bool_fields=['image__isnull'],
base_request={'downstream_treatment__isnull': True},
- extra_request_keys=find_extra_keys)
+ extra_request_keys=find_extra_keys.copy())
get_find_for_ope = get_item(
models.Find, 'get_find', 'find',
reversed_bool_fields=['image__isnull'],
base_request={'downstream_treatment__isnull': True},
- extra_request_keys=find_extra_keys,
+ extra_request_keys=find_extra_keys.copy(),
own_table_cols=models.Find.TABLE_COLS_FOR_OPE)
show_findsource = show_item(models.FindSource, 'findsource')