{% if products or vouchers %}
  • {% for product in products %} {% endfor %} {% for voucher in vouchers %} {% endfor %}
    {% if product.thumb %}{{ product.name }}{% endif %} {{ product.name }} {% if product.option %} {% for option in product.option %}
    - {{ option.name }} {{ option.value }} {% endfor %} {% endif %} {% if product.reward %}
    - {{ text_points }}: {{ product.reward }} {% endif %} {% if product.subscription %}
    - {{ text_subscription }} {{ product.subscription }} {% endif %}
    x {{ product.quantity }} {{ product.total }}
    {{ voucher.description }} x 1 {{ voucher.amount }}
    {% for total in totals %} {% endfor %}
    {{ total.title }} {{ total.text }}

    {{ text_cart }}    {{ text_checkout }}

  • {% else %}
  • {{ text_no_results }}

  • {% endif %}