{% extends "base.html" %} {% block title %}Transacciones{% endblock %} {% block page_title %}Transacciones{% endblock %} {% block topbar_actions %} Ingreso Gasto {% endblock %} {% block content %}
Ingresos filtrados
{{ "%.2f"|format(total_ingresos) }} €
Gastos filtrados
{{ "%.2f"|format(total_gastos) }} €
Balance
{{ "%.2f"|format(total_ingresos - total_gastos) }} €
{% for t in transacciones %} {% else %} {% endfor %}
FechaTipoDescripciónCategoríaMétodo Importe
{{ t.fecha }} {{ t.tipo|capitalize }} {{ t.descripcion }} {% if t.categoria_nombre %} {{ t.categoria_nombre }} {% else %}—{% endif %} {{ t.metodo_pago or '—' }} {% if t.tipo == 'ingreso' %}+{% else %}−{% endif %}{{ "%.2f"|format(t.importe) }} €
Sin transacciones con los filtros actuales
{% endblock %}