{% load wagtailcore_tags i18n humanize useful_tags %}
{% if order %}

{% trans "Your selections" %}

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

{{ row.text }}

  • {% trans "Quantity" %}: {{ row.quantity }}
  • {% trans "Price" %}: {{ row.price_total|format_price }}
{% if row.course_occasion %}

{% trans "Remove" %}

{% endif %}
{% endfor %}
{% else %}

{% trans "You haven't selected anything." %}

{% endif %}