{% extends "template.html.twig" %} {% block content %} {{ app.request.get('order') }}
| Name | Categories | Price | ||||
|---|---|---|---|---|---|---|
| {% if product.starred == true %}★{% else %} ☆ {% endif %} | {{ product.name }} {% if product.currentStock.stock > 0 %} stock: {{ product.currentStock.stock }} {% else %} out of stock {% endif %} {% if product.isnew() %} is new {% endif %} {{ product.subTitle }} | link | {{ product.price.last.price | format_currency('PLN', {}, 'pl') }} |
{% if product.price.last.price != product.price.last.productStandardPrice %}{{ product.price.last.productStandardPrice | format_currency('PLN', {}, 'pl') }} {{ ((1 - product.price.last.price / product.price.last.productStandardPrice)*100)|number_format(0) }}%
{% endif %}
|