diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-12-20 18:58:39 -0800 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-12-20 18:58:39 -0800 |
commit | 310585ae9e1482709f0a35fbaba3548bafb4581f (patch) | |
tree | 39f2e341146ebb74ad1fb6cc930786a4c1ab0b6f /youtube | |
parent | 0bc2e43822484d573f2c25709aadcc840a4665fb (diff) | |
download | yt-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')
-rw-r--r-- | youtube/templates/subscriptions.html | 6 |
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 %} |