{% extends "base.html" %} {% block title %} Checkout {% endblock title %} {% block body %} {% if shopping_cart|length > 0 %}

Please confirm a payment method

{% for item in shopping_cart %} {% endfor %}
{{ item.display_name }} €{{ item.price }}
Total €{{ total }}
{{ form }} {% csrf_token %}
Credit card Bank transfer
{% else %}

You have nothing to pay for

{% endif %} {% endblock body %}