2
0
Fork 0

feat(checkin): prefetch related objects of ShiftRegistration

This commit is contained in:
Luca 2024-05-14 21:07:32 +02:00
parent c50bb0ec78
commit 97335e72bb
1 changed files with 6 additions and 4 deletions

View File

@ -289,10 +289,12 @@ class CheckinList(LoginRequiredMixin, ListView):
title = "Ankommende Helfer:innen"
def get_queryset(self):
return ShiftRegistration.objects.filter(
shift__deleted=False,
state=ShiftRegistration.RegState.REGISTERED,
).order_by("shift__start_at")[:30]
return (
ShiftRegistration.objects.select_related("helper", "shift")
.prefetch_related("shift__event__calendar")
.filter(shift__deleted=False, state=ShiftRegistration.RegState.REGISTERED)
.order_by("shift__start_at")[:30]
)
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)