Fix active contest list

This commit is contained in:
cuom1999 2024-05-26 22:26:38 -05:00
parent 9f4ae9f78f
commit 829e6a802d

View file

@ -247,7 +247,11 @@ class ContestList(
@cached_property @cached_property
def _active_contests_ids(self): def _active_contests_ids(self):
return self._active_participations().values_list("contest_id", flat=True) return [
participation.contest_id
for participation in self._active_participations().select_related("contest")
if not participation.ended
]
def _get_current_contests_queryset(self): def _get_current_contests_queryset(self):
return ( return (