{% extends "base.html" %} {% block navbar_start %} {% endblock %} {% block content %}

{{ gettext("My past consumptions") }}

{{ "info-circle"|icon }}

{{ gettext("Your past consumptions are shown here.") }}

{% if view_model.is_consumptions_visible %} {% for consumption in view_model.consumptions %} {% endfor %} {% else %}
{{ gettext("You have not consumed anything yet.") }}
{% endif %}
{{ gettext("Date") }} {{ gettext("Name") }} {{ gettext("Description") }} {{ gettext("Price per unit") }} {{ gettext("Amount") }} {{ gettext("Total price") }}
{{ consumption.consumption_date }} {{ consumption.product_name }} {{ consumption.product_description }} {{ consumption.price_per_unit }} {{ consumption.consumption_amount }} {{ consumption.price_total }}
{% endblock %}