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/playlist.html | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 youtube/templates/playlist.html (limited to 'youtube/templates/playlist.html') diff --git a/youtube/templates/playlist.html b/youtube/templates/playlist.html new file mode 100644 index 0000000..994523e --- /dev/null +++ b/youtube/templates/playlist.html @@ -0,0 +1,41 @@ +{% set page_title = title|string + ' - Page ' + parameters_dictionary.get('page', '1') %} +{% extends "base.html" %} +{% import "common_elements.html" as common_elements %} +{% block style %} + + +{% endblock style %} + +{% block main %} + +
+
+ {{ title }} +

{{ title }}

+
+ +
+
{{ video_count|commatize }} videos
+
{{ view_count|commatize }} views
+
Last updated {{ time_published }}
+
+
+
+ + +
+ {% for info in video_list %} + {{ common_elements.item(info) }} + {% endfor %} +
+
+ + + +{% endblock main %} -- cgit v1.2.3-59-g8ed1b