From a4e01da27c08e43a67b2618ad1e71c1f8f86d5cd Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Thu, 19 Sep 2024 15:33:11 +0530 Subject: youtube fronend --- youtube/templates/local_playlist.html | 49 +++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 youtube/templates/local_playlist.html (limited to 'youtube/templates/local_playlist.html') diff --git a/youtube/templates/local_playlist.html b/youtube/templates/local_playlist.html new file mode 100644 index 0000000..3286f67 --- /dev/null +++ b/youtube/templates/local_playlist.html @@ -0,0 +1,49 @@ +{% set page_title = playlist_name + ' - Local playlist' %} +{% extends "base.html" %} +{% import "common_elements.html" as common_elements %} +{% block style %} + + +{% endblock style %} + +{% block main %} +
+

{{ playlist_name }}

+ +
+
+ + +
+
+
+ +
+
+ + + +
+
+ {% for video_info in videos %} + {{ common_elements.item(video_info) }} + {% endfor %} +
+ + +{% endblock main %} -- cgit v1.2.3-59-g8ed1b