Fix list of local playlists not being given on subscriptions page and local playlist page
This commit is contained in:
parent
33a8898656
commit
014da8d3ae
@ -110,6 +110,7 @@ def get_local_playlist_page(playlist_name=None):
|
|||||||
offset = 50*(page - 1)
|
offset = 50*(page - 1)
|
||||||
videos, num_videos = get_local_playlist_videos(playlist_name, offset=offset, amount=50)
|
videos, num_videos = get_local_playlist_videos(playlist_name, offset=offset, amount=50)
|
||||||
return flask.render_template('local_playlist.html',
|
return flask.render_template('local_playlist.html',
|
||||||
|
header_playlist_names = get_playlist_names(),
|
||||||
playlist_name = playlist_name,
|
playlist_name = playlist_name,
|
||||||
videos = videos,
|
videos = videos,
|
||||||
num_pages = math.ceil(num_videos/50),
|
num_pages = math.ceil(num_videos/50),
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
from youtube import util, yt_data_extract, channel
|
from youtube import util, yt_data_extract, channel, local_playlist
|
||||||
from youtube import yt_app
|
from youtube import yt_app
|
||||||
import settings
|
import settings
|
||||||
|
|
||||||
@ -774,6 +774,7 @@ def get_subscriptions_page():
|
|||||||
})
|
})
|
||||||
|
|
||||||
return flask.render_template('subscriptions.html',
|
return flask.render_template('subscriptions.html',
|
||||||
|
header_playlist_names = local_playlist.get_playlist_names(),
|
||||||
videos = videos,
|
videos = videos,
|
||||||
num_pages = math.ceil(number_of_videos_in_db/60),
|
num_pages = math.ceil(number_of_videos_in_db/60),
|
||||||
parameters_dictionary = request.args,
|
parameters_dictionary = request.args,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user