{% 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("Offer name") }} {{ gettext("Offer description") }} {{ gettext("Kind") }} {{ gettext("Hours paid") }}
{{ consumption.consumption_date }} {% if consumption.details_url %} {{ consumption.product_name }} {% else %} {{ consumption.product_name }} {% endif %} {{ consumption.product_description }} {{ consumption.consumption_type }} {{ consumption.hours_paid }}
{% endblock %}