aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/templates/subscriptions.html
diff options
context:
space:
mode:
authorJames Taylor <user234683@users.noreply.github.com>2019-12-20 18:58:39 -0800
committerJames Taylor <user234683@users.noreply.github.com>2019-12-20 18:58:39 -0800
commit310585ae9e1482709f0a35fbaba3548bafb4581f (patch)
tree39f2e341146ebb74ad1fb6cc930786a4c1ab0b6f /youtube/templates/subscriptions.html
parent0bc2e43822484d573f2c25709aadcc840a4665fb (diff)
downloadyt-local-310585ae9e1482709f0a35fbaba3548bafb4581f.tar.lz
yt-local-310585ae9e1482709f0a35fbaba3548bafb4581f.tar.xz
yt-local-310585ae9e1482709f0a35fbaba3548bafb4581f.zip
Subscriptions: Display currently selected tag in page title
Diffstat (limited to 'youtube/templates/subscriptions.html')
-rw-r--r--youtube/templates/subscriptions.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube/templates/subscriptions.html b/youtube/templates/subscriptions.html
index a4f294a..e2fb25c 100644
--- a/youtube/templates/subscriptions.html
+++ b/youtube/templates/subscriptions.html
@@ -1,4 +1,8 @@
-{% set page_title = 'Subscriptions' %}
+{% 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 %}