{% extends "core/base.jinja" %} {% from 'core/macros.jinja' import user_profile_link %} {% block title %} {% trans counter_name=counter %}{{ counter_name }} last operations{% endtrans %} {% endblock %} {% block content %}

{% trans counter_name=counter %}{{ counter_name }} last operations{% endtrans %}

{% trans %}Refillings{% endtrans %}

{% for i in last_refillings %} {% endfor %}
{% trans %}Date{% endtrans %} {% trans %}Barman{% endtrans %} {% trans %}Customer{% endtrans %} {% trans %}Amount{% endtrans %} {% trans %}Payment method{% endtrans %}
{{ i.date|localtime|date(DATETIME_FORMAT) }} - {{ i.date|localtime|time(DATETIME_FORMAT) }} {{ i.operator.get_display_name() }} {{ i.customer.user.get_display_name() }} {{ i.amount }} € {{ i.get_payment_method_display() }} {% trans %}Delete{% endtrans %}

{% trans %}Sellings{% endtrans %}

{% for i in last_sellings %} {% endfor %}
{% trans %}Date{% endtrans %} {% trans %}Barman{% endtrans %} {% trans %}Customer{% endtrans %} {% trans %}Label{% endtrans %} {% trans %}Quantity{% endtrans %} {% trans %}Total{% endtrans %} {% trans %}Payment method{% endtrans %}
{{ i.date|localtime|date(DATETIME_FORMAT) }} - {{ i.date|localtime|time(DATETIME_FORMAT) }} {{ i.seller.get_display_name() }} {{ i.customer.user.get_display_name() }} {{ i.label }} {{ i.quantity }} {{ i.quantity * i.unit_price }} € {{ i.get_payment_method_display() }} {% trans %}Delete{% endtrans %}
{% endblock %}