diff --git a/videodinges/templates/video.html.j2 b/videodinges/templates/video.html.j2
index 102a51e..4e8aa7d 100644
--- a/videodinges/templates/video.html.j2
+++ b/videodinges/templates/video.html.j2
@@ -11,6 +11,9 @@
diff --git a/videodinges/views.py b/videodinges/views.py
index 39bad45..2d113d7 100644
--- a/videodinges/views.py
+++ b/videodinges/views.py
@@ -51,6 +51,8 @@ def video(request: HttpRequest, slug: str) -> HttpResponse:
template_data['qualities'] = qualities.keys()
+ template_data['tracks'] = video.tracks.all()
+
return render(request, 'video.html.j2', template_data, using='jinja2')
def index(request: HttpRequest) -> HttpResponse: