Render payment info on 'Confirm' page

This commit is contained in:
Raphael Michel
2015-03-11 11:34:46 +01:00
parent 6d12d4826d
commit 3e392f7ed4
4 changed files with 24 additions and 0 deletions

View File

@@ -252,6 +252,7 @@ class OrderConfirm(EventViewMixin, CartDisplayMixin, EventLoginRequiredMixin, Ch
def get_context_data(self, **kwargs):
ctx = super().get_context_data(**kwargs)
ctx['cart'] = self.get_cart()
ctx['payment'] = self.payment_provider.checkout_confirm_render(self.request)
return ctx
@cached_property