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/subscriptions.html | 83 ++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 youtube/templates/subscriptions.html (limited to 'youtube/templates/subscriptions.html') diff --git a/youtube/templates/subscriptions.html b/youtube/templates/subscriptions.html new file mode 100644 index 0000000..2823e8d --- /dev/null +++ b/youtube/templates/subscriptions.html @@ -0,0 +1,83 @@ +{% if current_tag %} + {% set page_title = 'Subscriptions - ' + current_tag %} +{% else %} + {% set page_title = 'Subscriptions' %} +{% endif %} +{% extends "base.html" %} +{% import "common_elements.html" as common_elements %} + +{% block style %} + + +{% endblock style %} + +{% block main %} + +
+ + + + +
+ +
+ + {% if current_tag %} +

{{ current_tag }}

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