diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-07-24 00:02:04 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-07-24 00:02:04 -0700 |
commit | eb89c7426d8918332558aaba9ff4b7547c507f96 (patch) | |
tree | e76c268701876792d6388530a4ada4d233a29708 /youtube | |
parent | e00c3cf99f06e6f0c097e019219760cf26d16cbe (diff) | |
download | yt-local-eb89c7426d8918332558aaba9ff4b7547c507f96.tar.lz yt-local-eb89c7426d8918332558aaba9ff4b7547c507f96.tar.xz yt-local-eb89c7426d8918332558aaba9ff4b7547c507f96.zip |
Add 'subscribers' and 'videos' after corresponding numbers in channel item in search results
Diffstat (limited to 'youtube')
-rw-r--r-- | youtube/templates/common_elements.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube/templates/common_elements.html b/youtube/templates/common_elements.html index a6921e1..49e2fad 100644 --- a/youtube/templates/common_elements.html +++ b/youtube/templates/common_elements.html @@ -102,8 +102,8 @@ <a class="title" href="{{ info['url'] }}">{{ info['title'] }}</a> - <span>{{ info['subscriber_count'] }}</span> - <span>{{ info['size'] }}</span> + <span>{{ info['subscriber_count'] }} subscribers</span> + <span>{{ info['size'] }} videos</span> <span class="description">{{ text_runs(info.get('description', '')) }}</span> {% else %} |