79731647

Date: 2025-08-11 04:12:19
Score: 0.5
Natty:
Report link

I run across similar problem before.

Here all() takes care of the filter, but custom filter does not.

So another solution to your problem could be applying self instead of super().

return super().get_queryset().order_by("start_time")
#change above to below:
return self.get_queryset().order_by("start_time")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Ranger