{{ 'All items'|trans }}
{% for folder in folders %}
{{ folder }}
{% endfor %}
{% for item in shop %}
{% if item.image %}
{% else %}
{% endif %}
{{ item.name }}{% if item.quantity > 1 %} (x{{ item.quantity }}){% endif %} {% if item.promotion > 0 %}
-{{ item.promotion }}%
{% endif %}
{{ (item.description|striptags|replace({' ': '\n'})|slice(0, 80)) ~ '...' }}
{{ item.price }} Magic Coins
{% endfor %}