{% extends "base.html" %} {% block title %}Mis facturas{% endblock %} {% block stylesheets %} {% endblock stylesheets %} {% block content %}
{% if contract_invoices %} {% for contract, invoices in contract_invoices.items() %} {% if invoices %}
{{ contract }} {% for invoice in invoices %} {% endfor %}
Fecha de inicio Fecha de fin Importe total Operaciones
{{ invoice.init_date }} {{ invoice.end_date }} {{ invoice.total_amount }} €
{% endif %} {% endfor %} {% else %} Ahora mismo no posee ninguna factura {% endif %}
{% endblock %}