diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-03-16 12:47:33 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-03-16 12:48:23 +0100 |
commit | 9e5be05c239888f4c2fc0c457e0713a15915613d (patch) | |
tree | e6d085c1f8521ee7feb9ddd980dc5e0ad5bce7a5 /archaeological_finds/views.py | |
parent | e20e666c551e1d4d4630949fcd5000395697a5b2 (diff) | |
download | Ishtar-9e5be05c239888f4c2fc0c457e0713a15915613d.tar.bz2 Ishtar-9e5be05c239888f4c2fc0c457e0713a15915613d.zip |
Basket: add a close button (refs #3407)
Diffstat (limited to 'archaeological_finds/views.py')
-rw-r--r-- | archaeological_finds/views.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/archaeological_finds/views.py b/archaeological_finds/views.py index 084f15d13..341734ae7 100644 --- a/archaeological_finds/views.py +++ b/archaeological_finds/views.py @@ -108,10 +108,12 @@ show_findsource = show_item(models.FindSource, 'findsource') get_findsource = get_item(models.FindSource, 'get_findsource', 'findsource') show_find = show_item(models.Find, 'find') -display_find = display_item(models.Find, 'find') +display_find = display_item(models.Find) revert_find = revert_item(models.Find) show_findbasket = show_item(models.FindBasket, 'findbasket') +display_findbasket = display_item(models.FindBasket, + show_url='show-find/basket-') find_creation_steps = [ ('selecrecord-find_creation', RecordFormSelectionTable), |