Files
SGTMensa/mensa_app/urls.py

7 lines
157 B
Python

from django.urls import path
from .views import GerichtListView
urlpatterns = [
path('speisekarte/', GerichtListView.as_view(), name='gericht_list'),
]