Datenmodell funktioniert und Verwaltung über Admin-Ansicht, service angelegt.

This commit is contained in:
2026-07-28 01:44:02 +02:00
parent 6a6de6882b
commit c62c593b1c
9 changed files with 262 additions and 40 deletions
+16
View File
@@ -68,5 +68,21 @@ USE_TZ = True
STATIC_URL = 'static/'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'