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

{{ 'Historia transakcji'|trans }}

{% for item in history %} {% if item.price is defined %} {% endif %} {% if item.code is defined %} {% endif %} {% endfor %}
{{'Nazwa'|trans}} {{'Data'|trans}} {{'Typ'|trans}} {{'Ilość'|trans}} {{'Cena/Kod'|trans}}
{{ item.name }} {{ item.date }} {% if item.type == "item_shop" %} {{"Zakup w sklepie VIP"|trans}} {% endif %} {% if item.type == "points_vip" %} {{"Doładowanie punktów"|trans}} {% endif %} {{ item.quantity }}{{ item.price }}{{ item.code }}
{% endblock %} {% block javascripts %} {% endblock %}