Erster View und erstes Template angelegt, URL /speisekarte registriert.

This commit is contained in:
2026-05-15 01:18:38 +02:00
parent bb184ff952
commit 4533fd6402
20 changed files with 71 additions and 1 deletions

View File

@@ -15,8 +15,9 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from django.urls import path, include
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('mensa_app.urls')), # Schaltet die App-URLs frei
]