{% extends "template.html.twig" %} {% block content %} {% cache 'list_' ~ listType %}
{% for product in products %} {% endif %} {% endfor %}
Name Categories Lowest Price Current Price
{% if product.starred == true %}★{% else %} ☆ {% endif %} {{ product.name }} {{ product.name }} {% if product.currentStock.stock > 0 %} stock: {{ product.currentStock.stock }} {% else %} out of stock {% endif %} {% if product.isDiscontinued() %} is discontinued {% endif %} {% if product.isNew() %} is new {% endif %} {{ product.subTitle }} link {% if product.isDiscontinued() %} {{ product.priceLowest | format_currency('PLN', {}, 'pl') }} {% else %} {% if product.priceLowest != product.priceCurrent %}{{ product.priceLowest | format_currency('PLN', {}, 'pl') }}{%else%}now lowest{% endif %}{{ product.priceCurrent | format_currency('PLN', {}, 'pl') }}
{% if product.priceCurrent != product.productStandardPrice %}{{ product.productStandardPrice | format_currency('PLN', {}, 'pl') }} {{ ((1 - product.priceCurrent / product.productStandardPrice)*100)|number_format(0) }}% {% endif %}
{% endcache %} {% endblock %}