feat: Add general model

This commit is contained in:
2024-03-18 08:26:21 +01:00
parent 3de4935435
commit 3d7c1f3280
7 changed files with 173 additions and 3 deletions

View File

@@ -5,3 +5,12 @@ from django.http import HttpResponse
def index(request):
return HttpResponse("Hello, world. Look at all the little guys&girls and non-binary pals!")
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)