2
0
Fork 0

fix worklist sort

This commit is contained in:
Andreas (@xAndy) Zimmermann 2022-05-19 21:19:57 +02:00
parent 7465fe5083
commit 77d4ecadec
1 changed files with 1 additions and 0 deletions

View File

@ -19,6 +19,7 @@ def worklist(request):
.filter( .filter(
help_wanted, help_wanted,
start_at__gt=timezone.now(), start_at__gt=timezone.now(),
deleted=False,
) )
.order_by("start_at", "room_id") .order_by("start_at", "room_id")
) )