{% extends "tnc-base.html" %} {% load static %} {% block title %} Checkout {% endblock title %} {% block content %}
{% if shopping_cart|length > 0 %}

Please confirm your payment

Please finalize your registration by clicking CONFIRM below and choosing your payment method. Only after you have confirmed, and we have received your payment, is your registration for TNC25 complete.
{% for item in shopping_cart %}
{{ item.display_name }}
€{{ item.price }}
{% endfor %}
Total (excl. VAT)
€{{ shopping_cart.total_excl }}
VAT (20%)
€{{ shopping_cart.vat }}
Total (incl. VAT)
€{{ shopping_cart.total_incl }}
{% for field in form %} {% for error in field.errors %}
{{ error }}
{% endfor %} {{ field }} {% endfor %} {% csrf_token %}
{% else %}

You have no pending purchases

{% endif %}
{% endblock content %}