feat: Add sites for the main actions

This commit is contained in:
2024-03-18 16:36:45 +01:00
parent 85d51c6cee
commit ded1aa77cf
7 changed files with 30 additions and 6 deletions

View File

@@ -19,3 +19,9 @@ def adoption_notice_detail(request, adoption_notice_id):
def animal_detail(request, animal_id):
response = "You're looking at animal %s."
return HttpResponse(response % animal_id)
def search(request):
return render(request, 'fellchensammlung/search.html')
def add_adoption(request):
return render(request, 'fellchensammlung/add_adoption.html')