Modificaciones en filtrado y creada opción para marcar que un gasto/ingreso es un traspaso de cuentas #34

Merged
jkuijperm merged 18 commits from dev into main 2026-09-16 07:50:18 +00:00
6 changed files with 10 additions and 10 deletions
Showing only changes of commit 3d47f8bd90 - Show all commits

View File

@ -898,7 +898,7 @@ tr:hover {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.settings-card h3 {
.settings-card h2 {
margin: 0 0 0.25rem 0;
}

View File

@ -5,7 +5,7 @@
{% endblock %}
{% block content %}
<h2>Editar categoría</h2>
<h1>Editar categoría</h1>
<form method="post" class="app-form">
{% csrf_token %}

View File

@ -8,7 +8,7 @@
<h1>Mis categorías</h1>
<h3>Nueva categoría</h3>
<h2>Nueva categoría</h2>
<form method="post" class="app-form">
{% csrf_token %}
{% include "expenses/_form_fields.html" %}
@ -17,7 +17,7 @@
<hr>
<h3>Listado</h3>
<h2>Listado</h2>
<div class="table-wrap">
<table>
<thead>

View File

@ -2,7 +2,7 @@
{% block content %}
<h2>Iniciar sesión</h2>
<h1>Iniciar sesión</h1>
<form method="post" class="app-form">
{% csrf_token %}

View File

@ -2,7 +2,7 @@
{% block content %}
<h2>Recuperar contraseña</h2>
<h1>Recuperar contraseña</h1>
<p>
Esta aplicación actualmente no envía correos de recuperación automáticos.

View File

@ -5,23 +5,23 @@
{% endblock %}
{% block content %}
<h2>Configuración</h2>
<h1>Configuración</h1>
<p>Gestiona las categorías, etiquetas y objetivos de tu cuenta</p>
<div class="settings-grid">
<a class="settings-card" href="{% url 'category_list' %}">
<h3>Categorías</h3>
<h2>Categorías</h2>
<p>Organiza tus gastos por tipo.</p>
</a>
<a class="settings-card" href="{% url 'tag_list' %}">
<h3>Etiquetas</h3>
<h2>Etiquetas</h2>
<p>Añade etiquetas libres a tus gastos.</p>
</a>
<a class="settings-card" href="{% url 'goal_list' %}">
<h3>Objetivos</h3>
<h2>Objetivos</h2>
<p>Define y controla tus metas de gasto.</p>
</a>
</div>