7 lines
157 B
Python
7 lines
157 B
Python
from django.urls import path
|
|
from .views import GerichtListView
|
|
|
|
urlpatterns = [
|
|
path('speisekarte/', GerichtListView.as_view(), name='gericht_list'),
|
|
]
|