From 905e5c2b5e7b2a006f40d7a21152bbb0d7bbf7b5 Mon Sep 17 00:00:00 2001 From: Kumi Date: Thu, 5 May 2022 18:32:41 +0200 Subject: [PATCH] Playlist display --- templates/frontend/video.html | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/templates/frontend/video.html b/templates/frontend/video.html index b6afe97..8679ec7 100644 --- a/templates/frontend/video.html +++ b/templates/frontend/video.html @@ -15,6 +15,14 @@

{{object.description|linebreaksbr}}

+ {% if object.playlist_set.all %} +
Part of Playlists + {% for playlist in object.playlist_set.all %} + {{playlist.title}} + {% endfor %} +
+
+ {% endif %}
Tags {% for tag in object.tags %} {{tag}}