diff --git a/expenses_manager/expenses/templates/expenses/dashboard.html b/expenses_manager/expenses/templates/expenses/dashboard.html
index d0b4cd0..1f6e38e 100644
--- a/expenses_manager/expenses/templates/expenses/dashboard.html
+++ b/expenses_manager/expenses/templates/expenses/dashboard.html
@@ -9,69 +9,97 @@
-
Dashboard
- Gastos por categoría
-
- {% for row in by_category %}
- - {{ row.category__name}} → {{row.total}}
- {% empty %}
- - No hay datos
- {% endfor %}
-
+
+
+
+
-
+
+
+
+
+
+
+ Gastos por categoría
+
+
+ {% for row in by_category %}
+ - {{ row.category__name }} → {{ row.total }}
+ {% empty %}
+ - No hay datos
{% endfor %}
+
+
+
-
-
-
-
+ Gastos por mes
+
+
+ {% for row in by_months %}
+ - Mes {{ row.mont }} → {{ row.total }}
+ {% endfor %}
+
+
+
+
+
+
+
+
+
+
+
+
+