diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-11-30 17:49:39 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-11-30 17:49:39 +0100 |
commit | e5291ad557e97c1aa2d516494d25fd72ea33ae91 (patch) | |
tree | 13469ff4be4d6d84ae1272633b3f77ff25304246 /archaeological_finds/views.py | |
parent | 8b666443667f92e014d70a4247c7885375bba610 (diff) | |
download | Ishtar-e5291ad557e97c1aa2d516494d25fd72ea33ae91.tar.bz2 Ishtar-e5291ad557e97c1aa2d516494d25fd72ea33ae91.zip |
Treatment searches and sheet
Diffstat (limited to 'archaeological_finds/views.py')
-rw-r--r-- | archaeological_finds/views.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/archaeological_finds/views.py b/archaeological_finds/views.py index f0c67c231..1f3213504 100644 --- a/archaeological_finds/views.py +++ b/archaeological_finds/views.py @@ -45,6 +45,10 @@ get_find = get_item(models.Find, 'get_find', 'find') get_find_for_ope = get_item(models.Find, 'get_find', 'find', own_table_cols=models.Find.TABLE_COLS_FOR_OPE) +get_find_for_treatment = get_item( + models.Find, 'get_find', 'find', + own_table_cols=models.Find.TABLE_COLS_FOR_OPE, base_request={}) + show_treatment = show_item(models.Treatment, 'treatment') get_treatment = get_item(models.Treatment, 'get_treatement', 'treatment') |