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