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

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

{{ "info-circle"|icon }}

{{ gettext("Here you can view your past consumptions.") }}

{% if view_model.show_consumptions %} {% for consumption in view_model.consumptions %} {% endfor %} {% else %}
{{ gettext("You haven't consumed anything yet.") }}
{% endif %}
{{ gettext("Date") }} {{ gettext("Name") }} {{ gettext("Description") }} {{ gettext("Purpose") }} {{ gettext("Unit price") }} {{ gettext("Amount") }} {{ gettext("Total price") }}
{{ consumption.consumption_date }} {{ consumption.product_name }} {{ consumption.product_description }} {{ consumption.consumption_type }} {{ consumption.price_per_unit }} {{ consumption.amount }} {{ consumption.price_total }}
{% endblock %}