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:21:42 +00:00
|
|
|
latest_adoption_list = AdoptionNotice.objects.order_by("-created_at")[:5]
|
|
|
|
output = ", ".join([q.name for q in latest_adoption_list])
|
|
|
|
return HttpResponse(output)
|
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)
|