fix(host-ui): accept deep-link routes and normalize shell path
All checks were successful
CI / test-and-quality (push) Successful in 2m14s
CI / test-and-quality (pull_request) Successful in 1m55s

This commit is contained in:
2026-03-01 10:20:32 +00:00
parent 64bff4efb3
commit c8c27346a8
3 changed files with 7 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ from fupogfakta.models import Category
@login_required
def host_screen(request):
def host_screen(request, spa_path=None):
categories = Category.objects.filter(is_active=True).order_by("name")
return render(request, "lobby/host_screen.html", {"categories": categories})