{% extends 'admin.html.twig' %} {% block content %}

Sprzedaż {# Tylko moje dane
#}

Filtry

{% for month in months %}

{{month['name']}} {{ statistics[month['number']] is defined ? statistics[month['number']]['amount']|number_format(2, '.', ',') : '0,00' }}

    {% if sales[month['number']] is defined %} {% for sale in sales[month['number']] %}
  • {{ sale.getProductsDescription() }}

    {{ sale.user }}

    {{ sale.contact }}

    {{ sale.expectedDate|date('d.m.Y') }}

    {{ sale.getSalesProductsSum()|number_format(2, '.', ',') }}

  • {% endfor %} {% endif %}
{% endfor %}
{% endblock content %} {% block javascript %} {{ parent() }} {% endblock %}