"""Views. In M1 nur ein Platzhalter-Dashboard; wird in späteren Meilensteinen ausgebaut.""" from django.contrib.auth.decorators import login_required from django.shortcuts import render @login_required def dashboard(request): """Platzhalter-Startseite (echtes Controlling-Dashboard folgt in M5).""" return render(request, "abrechnung/dashboard_placeholder.html")