Notfellchen/src/fellchensammlung/views.py

22 lines
683 B
Python
Raw Normal View History

2024-03-17 10:26:32 +00:00
from django.shortcuts import render
from django.http import HttpResponse
2024-03-18 13:21:42 +00:00
from fellchensammlung.models import AdoptionNotice
2024-03-17 10:26:32 +00:00
def index(request):
2024-03-18 13:53:31 +00:00
"""View function for home page of site."""
2024-03-18 13:21:42 +00:00
latest_adoption_list = AdoptionNotice.objects.order_by("-created_at")[:5]
2024-03-18 13:53:31 +00:00
context = {"latest_adoptions": latest_adoption_list}
return render(request, 'fellchensammlung/index.html', context=context)
2024-03-18 07:26:21 +00:00
def adoption_notice_detail(request, adoption_notice_id):
return HttpResponse("You're looking at adoption notice %s." % adoption_notice_id)
def animal_detail(request, animal_id):
response = "You're looking at animal %s."
return HttpResponse(response % animal_id)