diff --git a/scipost_django/production/views.py b/scipost_django/production/views.py index 738e47db6a719a38a6211ce21dbcdd5dbbc19d6a..37d91e392c88b2abc89fa167d0726cf1bd2a5cd1 100644 --- a/scipost_django/production/views.py +++ b/scipost_django/production/views.py @@ -299,7 +299,7 @@ def stream(request, stream_id): """ Overview page for specific stream. """ - streams = ProductionStream.objects.ongoing() + streams = ProductionStream.objects.all() if not request.user.has_perm("scipost.can_view_all_production_streams"): # Restrict stream queryset if user is not supervisor streams = streams.filter_for_user(request.user.production_user)