move coming soon service to the end

This commit is contained in:
Tobias Brunner 2025-03-03 11:27:31 +01:00
parent 8c7501d1af
commit 42050d069b
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,7 @@ from hub.services.models import (
def service_list(request):
services = (
Service.objects.all()
.order_by("-is_featured", "name")
.order_by("-is_featured", "is_coming_soon", "name")
.prefetch_related(
"categories",
"offerings",