{% extends "base.html" %} {% load i18n humanize tapeforms wagtailroutablepage_tags useful_tags %} {% block cart_drop %}{% endblock %} {% block main %}

{% trans "Payment" %}

{% csrf_token %}

{% trans "Courses" %}

{% for row in order.rows.all %}

{{ row.text }}

  • {% trans "Purchased slots" %}: {{ row.quantity }}
  • {% trans "SKU" %}: {{ row.sku }}
  • {% trans "Price" %}: {{ row.price_total|format_price }}
{% if row.course_occasion %}

Deltagare:

    {{ row.participants.all|unordered_list }}
{% endif %}
{% endfor %}

{% trans "Invoice information" %}

{% form form %}
{{ order.total_quantity }} Plats{{ order.total_quantity|pluralize:"er" }}
{{ order.total_price|format_price }} Summa
{{ order.vat|format_price }} + Moms
{{ order.total_price_incl|format_price }} = Totalpris
{% endblock %}