feat: Allow excluding rescue org from checking

This commit is contained in:
2025-06-19 23:33:48 +02:00
parent 1307b2ff7b
commit a302a36fd4
3 changed files with 22 additions and 1 deletions

View File

@@ -712,7 +712,7 @@ def rescue_organization_check(request):
if action == "checked":
rescue_org.set_checked()
last_checked_rescue_orgs = RescueOrganization.objects.order_by("last_checked")
last_checked_rescue_orgs = RescueOrganization.objects.filter(exclude_from_check=False).order_by("last_checked")
context = {"rescue_orgs": last_checked_rescue_orgs, }
return render(request, 'fellchensammlung/rescue-organization-check.html', context=context)