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

Please confirm your payment

{% for item in shopping_cart %}
{{ item.display_name }}
€{{ item.price }}
{% endfor %}
Total
€{{ total }}
{% for field in form %} {% for error in field.errors %}
{{ error }}
{% endfor %} {{ field }} {% endfor %} {% csrf_token %}
{% else %}

You have nothing to pay for

{% endif %} {% endblock body %}