channel: replace page #s w/ next page button using provided ctoken

Since yt doesn't accept page #'s when sorting by oldest

Signed-off-by: Jesús <heckyel@hyperbola.info>
This commit is contained in:
James Taylor
2020-12-17 13:46:29 -08:00
committed by Jesús
parent cf7aa41893
commit 43679efff5
4 changed files with 32 additions and 18 deletions

View File

@@ -105,7 +105,11 @@
<hr/>
<footer class="pagination-container">
{% if current_tab == 'videos' %}
{% if current_tab == 'videos' and current_sort.__str__() == '2' %}
<nav class="next-previous-button-row">
{{ common_elements.next_previous_ctoken_buttons(None, ctoken, channel_url + '/' + current_tab, parameters_dictionary) }}
</nav>
{% elif current_tab == 'videos' %}
<nav class="pagination-list">
{{ common_elements.page_buttons(number_of_pages, channel_url + '/' + current_tab, parameters_dictionary, include_ends=(current_sort.__str__() == '3')) }}
</nav>