- 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
14 lines
280 B
Python
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
|