Display payment details

This commit is contained in:
Raphael Michel
2015-03-12 22:54:59 +01:00
parent 3e392f7ed4
commit 8c802e534e
11 changed files with 306 additions and 51 deletions

View File

@@ -251,7 +251,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['cart'] = self.get_cart(answers=True)
ctx['payment'] = self.payment_provider.checkout_confirm_render(self.request)
return ctx