{% 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) > 150 ? ((item.description|striptags|slice(0, 150)) ~ '...')|raw : (item.description|striptags|raw) }}

{% endif %} {% if item.image is 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 %} {% else %}
{{"Aucun enregistrement trouvé"|trans}}
{% endfor %}
{{ knp_pagination_render(shop) }}
{% endblock %}