{% extends "base.html" %} {% block interface %}
{% include "_navigation.html" %}

Informe de cuenta: {{ cuenta.nombre }}

Periodo del {{ fecha_inicio }} hasta {{ fecha_fin }} - Saldo inicial: {{ saldo_inicial|floatformat:2 }} €

{% for item in movimientos_con_saldo %} {% if item.tipo == 'Ingreso' %} {% else %} {% endif %} {% endfor %}
Fecha Desde Hasta Descripción Monto (€) Saldo después (€) Acciones
{{ item.fecha|date:"Y-m-d H:i" }} {{ item.desde }} {{ item.hasta }} {{ item.descripcion }}{{ item.monto|floatformat:2 }}-{{ item.monto|floatformat:2 }}{{ item.saldo_despues|floatformat:2 }}
{% endblock %}