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

{{'Historique de transaction'|trans }}

{% for item in history %} {% if item.price is defined %} {% endif %} {% if item.code is defined %} {% endif %} {% endfor %}
{{'Nom'|trans}} {{'Date'|trans}} {{'Type'|trans}} {{'Quantité'|trans}} {{'Prix/code'|trans}}
{{ item.name }} {{ item.date }} {% if item.type == "item_shop" %} {{"Achat boutique VIP"|trans}} {% endif %} {% if item.type == "points_vip" %} {{"Rechargement crédits"|trans}} {% endif %} {{ item.quantity }}{{ item.price }}{{ item.code }}
{% endblock %} {% block javascripts %} {% endblock %}