{% extends 'ecom.html.twig' %} {% block content %} {{ form_start(form) }}
{{ 'Product' | trans }} | {{ 'Kategori' | trans }} | {{ 'Quantity' | trans }} | {{ 'Price' | trans }} | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
{% if item['addOn'] == false %}
{% if item['productThumbnail'] is not empty %}
{% else %}
{{ item['productName'] }} {{ item['size'] is not empty ? ' - ' ~ item['size'] : '' }}
{{ item['productName'] }} - {{ item['productSku'] }}
{% if item['addOnInputAllLetterInputCapital'] %}
|
{% if productCategories[item['productId']] is not empty %} {% set tempIndex = 0 %} {% for productCategory in productCategories[item['productId']] %} {% if tempIndex > 0 %}, {% endif %} {{ productCategory['name'] }} {% set tempIndex = tempIndex + 1 %} {% endfor %} {% endif %} | {{ item['quantity'] }} | {{ item['productPriceEcomIncTax'] }} {{ 'kr' | trans }} | |||||||||
{{ form_row(form.comment) }}
|
|