{% extends 'Application/' ~ settings.get("theme") ~'/base.html.twig' %} {% block title %}{{'Boutique VIP'|trans}}{% endblock %} {% block body %}

{{'Boutique VIP'|trans}}

{% for item in shop %} {% if item.image is not null %}
{{item.name}} | Hôtel des ventes - {{settings.get('game_title')}} | {{settings.get('seo_description')}}

{{item.name}} {% if item.quantity > 1 %} (x{{item.quantity}}) {% endif %} {% if (item.promotion > 0) %} -{{ item.promotion }}%{% endif %}

{{item.description|striptags|raw}}
{% endif %} {% if item.image is null %}
{{item.itemData.Name}} | Hôtel des ventes - {{settings.get('game_title')}} | {{settings.get('seo_description')}} {{item.itemData.Name}} {% if item.quantity > 1 %} (x{{item.quantity}}) {% endif %} {% if (item.promotion > 0) %} -{{ item.promotion }}%{% endif %}

{{ (item.description|striptags) > 150 ? ((item.description|striptags|slice(0, 150)) ~ '...')|raw : (item.description|striptags|raw) }}

{% if (item.promotion > 0) %} Save -{{ item.promotion }}% on this item {% else %} No promotion AVAILABLE {% endif %}
{{item.price}} Magic Coins {% if app.user %} {% endif %}
{% endif %} {% endfor %}
{% endblock %}