M1: Grundgerüst, Datenmodell und Admin
Django-5.2-Projekt mit uv, django-environ und Docker-Compose-Setup (web + Postgres, WeasyPrint-Systembibliotheken im Image). Vollständiges Datenmodell (Firma, Therapeut, Auftraggeber, Teilnehmer, Leistungsart, Leistung, InvoiceLog, InvoiceCounter) mit Admin, Login-Flow und Platzhalter-Dashboard. Fortschritt in FORTSCHRITT.md. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_016yy3uodsai6Ytt3GJ7tBdz
This commit is contained in:
10
abrechnung/views.py
Normal file
10
abrechnung/views.py
Normal file
@@ -0,0 +1,10 @@
|
||||
"""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")
|
||||
Reference in New Issue
Block a user