aboutsummaryrefslogtreecommitdiffstats
path: root/youtube/playlist.py
diff options
context:
space:
mode:
authorJames Taylor <28744867+user234683@users.noreply.github.com>2020-10-12 09:37:13 -0700
committerGitHub <noreply@github.com>2020-10-12 09:37:13 -0700
commitfd253d9e07fa34e2a22d28d445839147daca9ee0 (patch)
tree7dfecaadce3cc58ddcc86e2cd9d5ef762563e9ce /youtube/playlist.py
parent37d286fc7ce8feec72d9ecf5d238a42c873de1d0 (diff)
parent2cfc6dec39ccdcc0c5fe2eea73f47b7040e51833 (diff)
downloadyt-local-fd253d9e07fa34e2a22d28d445839147daca9ee0.tar.lz
yt-local-fd253d9e07fa34e2a22d28d445839147daca9ee0.tar.xz
yt-local-fd253d9e07fa34e2a22d28d445839147daca9ee0.zip
Merge branch 'master' into optional_proxy_images
Diffstat (limited to 'youtube/playlist.py')
-rw-r--r--youtube/playlist.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube/playlist.py b/youtube/playlist.py
index a5ec0db..e596eae 100644
--- a/youtube/playlist.py
+++ b/youtube/playlist.py
@@ -1,4 +1,4 @@
-from youtube import util, yt_data_extract, proto
+from youtube import util, yt_data_extract, proto, local_playlist
from youtube import yt_app
import settings
@@ -115,6 +115,7 @@ def get_playlist_page():
video_count = 40
return flask.render_template('playlist.html',
+ header_playlist_names = local_playlist.get_playlist_names(),
video_list = info.get('items', []),
num_pages = math.ceil(video_count/20),
parameters_dictionary = request.args,