12 lines
354 B
Python
12 lines
354 B
Python
from django.shortcuts import render
|
|
|
|
# Create your views here.
|
|
from django.views.generic import ListView
|
|
from .models import Gericht
|
|
|
|
class GerichtListView(ListView):
|
|
model = Gericht
|
|
template_name = 'mensa_app/gericht_liste.html' # Der Pfad zum Template
|
|
context_object_name = 'alle_gerichte' # Der Name, den wir im Template nutzen
|
|
|