{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block topbar_actions %} Ingreso Gasto Nueva factura {% endblock %} {% block content %} {% if mostrar_onboarding %}
| Fecha | Descripción | Categoría | Importe |
|---|---|---|---|
| {{ t.fecha }} | {{ t.descripcion }} | {% if t.categoria_nombre %} {{ t.categoria_nombre }} {% endif %} | {% if t.tipo == 'ingreso' %}+{% else %}-{% endif %}{{ "%.2f"|format(t.importe) }} € |
| Sin transacciones registradas | |||
| Producto | Unidades | Importe facturado |
|---|---|---|
| {{ p.nombre }} | {{ "%.0f"|format(p.total_uds) }} | {{ "%.2f"|format(p.total_importe) }} € |