diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-10-21 18:29:47 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-10-21 18:29:47 +0200 |
commit | 92c84e043c6e788190980883265e50ed8a1fa5a1 (patch) | |
tree | 606b2c5299a5376e49addc4e2f8acc5d5f465fbe /archaeological_files/wizards.py | |
parent | 0f0d096915e95b879b4c027d02e9e28e1279fa3d (diff) | |
download | Ishtar-92c84e043c6e788190980883265e50ed8a1fa5a1.tar.bz2 Ishtar-92c84e043c6e788190980883265e50ed8a1fa5a1.zip |
Djangoization - Major refactoring (step 9)
* move templates
* change labels
Diffstat (limited to 'archaeological_files/wizards.py')
-rw-r--r-- | archaeological_files/wizards.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_files/wizards.py b/archaeological_files/wizards.py index 0cc34ebcc..e2f6722ef 100644 --- a/archaeological_files/wizards.py +++ b/archaeological_files/wizards.py @@ -144,7 +144,7 @@ class FileDeletionWizard(FileClosingWizard): for operation in Operation.objects.filter(associated_file=obj).all(): operation.delete() obj.delete() - return render_to_response('wizard_done.html', {}, + return render_to_response('ishtar/wizard/wizard_delete_done.html', {}, context_instance=RequestContext(self.request)) |