Files
kakebo/app/monthly/apps.py
Andros Fenollosa c35fe06f60 Add month start page, expense success flow, and active nav tracking
- Add monthly app with "Inicio de mes" page (Ingresos, Gastos fijos, Tu presupuesto tables)
- Add expense success page with LiveView navigation back to form
- Add subcategory field to ExpenseForm with LiveView partial rendering
- Update nav bar: Gasto, Mes, Categorias, Salir with JS-based active state
- Change amount placeholder to use comma separator (0,00)
- Add ruff.toml with tab indentation config
- Format codebase with tabs via Ruff
2026-03-12 08:16:08 +01:00

14 lines
280 B
Python

from django.apps import AppConfig
class MonthlyConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "app.monthly"
verbose_name = "Monthly"
def ready(self):
try:
import app.monthly.liveview_handlers # noqa: F401
except ImportError:
pass