{% for item in shop %}
{% if item.image %} {{ item.name }} {% else %} {{ item.itemData.Name }} {% 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 %}