Shopping cart
{% if products or vouchers %}
{% for product in products %}
{% if product.thumb %} {{ product.name }} {% endif %}
{{ product.name }} {% if product.option %} {% for option in product.option %}
- {{ option.name }} {{ option.value }} {% endfor %} {% endif %} {% if product.recurring %}
- {{ text_recurring }} {{ product.recurring }} {% endif %}
x {{ product.quantity }}
{{ product.total }}
{% endfor %} {% for voucher in vouchers %}
{{ voucher.description }}
x 1
{{ voucher.amount }}
{% endfor %}
{% for total in totals %}
{{ total.title }}
{{ total.text }}
{% endfor %}

{{ text_cart }}    {{ text_checkout }}

{% else %}

{{ text_empty }}

{% endif %}