diff options
Diffstat (limited to 'ishtar/furnitures/forms.py')
-rw-r--r-- | ishtar/furnitures/forms.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ishtar/furnitures/forms.py b/ishtar/furnitures/forms.py index efbae4b2b..3835073dd 100644 --- a/ishtar/furnitures/forms.py +++ b/ishtar/furnitures/forms.py @@ -676,7 +676,7 @@ class DeletionWizard(Wizard): def done(self, request, storage, form_list, **kwargs): obj = self.get_current_object(request, storage) obj.delete() - return render_to_response('wizard_done.html', {}, + return render_to_response('wizard_delete_done.html', {}, context_instance=RequestContext(request)) class ClosingWizard(Wizard): @@ -726,6 +726,6 @@ class ClosingWizard(Wizard): if 'end_date' in form.cleaned_data and hasattr(obj, 'end_date'): obj.end_date = form.cleaned_data['end_date'] obj.save() - return render_to_response('wizard_done.html', {}, + return render_to_response('wizard_closing_done.html', {}, context_instance=RequestContext(request)) |