{% extends "base.html" %} {% load static %} {% 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 (excl. VAT) €{{ total_excl }} VAT (20%) €{{ vat }} Total (incl. VAT) €{{ total_incl }} {% for field in form %} {% if field.name != "payment_method" %} {{ field.label }} {% for error in field.errors %}{{ error }}{% endfor %} {{ field }} {% endif %} {% endfor %} {% csrf_token %} {% else %} You have no pending purchases {% endif %} {% endblock body %}
You have no pending purchases