From dbe52e48847ece6bfa5467a76e2abecd040fd3d5 Mon Sep 17 00:00:00 2001 From: moanos Date: Sun, 3 Nov 2024 20:35:41 +0100 Subject: [PATCH] fix: Deactivate ANs OLDER than three weeks, not newer --- src/fellchensammlung/tools/admin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fellchensammlung/tools/admin.py b/src/fellchensammlung/tools/admin.py index 487f2d2..349db8f 100644 --- a/src/fellchensammlung/tools/admin.py +++ b/src/fellchensammlung/tools/admin.py @@ -54,7 +54,7 @@ def get_unchecked_adoption_notices(weeks=3): # Query for active adoption notices that were checked in the last three weeks unchecked_adoptions = AdoptionNotice.objects.filter( - last_checked__gte=three_weeks_ago + last_checked__lte=three_weeks_ago ) active_unchecked_adoptions = [adoption for adoption in unchecked_adoptions if adoption.is_active] return active_unchecked_adoptions