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

6
mensa_app/urls.py Normal file
View File

@@ -0,0 +1,6 @@
from django.urls import path
from .views import GerichtListView
urlpatterns = [
path('speisekarte/', GerichtListView.as_view(), name='gericht_list'),
]