blob: be87d8fb275289fd98bc4df8daf02c594dc2d6a8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from django.shortcuts import render
from django.http import HttpRequest, HttpResponse
from .models import Drink
def index(request: HttpRequest) -> HttpResponse:
drinks = Drink.objects.all()
return render(request=request, template_name="drinks_overview.html", context={'drinks': drinks})
|