From 41d821b86ea829c9586657c000129a8cf2f6ac48 Mon Sep 17 00:00:00 2001 From: moanos Date: Thu, 19 Jun 2025 17:56:04 +0200 Subject: [PATCH] fix: template path --- src/fellchensammlung/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fellchensammlung/views.py b/src/fellchensammlung/views.py index f7d840a..37ea711 100644 --- a/src/fellchensammlung/views.py +++ b/src/fellchensammlung/views.py @@ -675,7 +675,7 @@ def external_site_warning(request, template_name='fellchensammlung/external-site return render(request, template_name, context=context) -def list_rescue_organizations(request, template='fellchensammlung/bulma-animal-shelters.html'): +def list_rescue_organizations(request, template='fellchensammlung/animal-shelters.html'): rescue_organizations = RescueOrganization.objects.all() context = {"rescue_organizations": rescue_organizations, "show_rescue_orgs": True}