List apps underneath each other on small screens

This commit is contained in:
relikd
2020-09-20 14:13:52 +02:00
parent ef5fccceb8
commit 90eb5d709e
3 changed files with 23 additions and 8 deletions

View File

@@ -41,7 +41,7 @@ def gen_pager(current, total):
links += mklink(i, i, active=i == current)
# if current < total:
# links += mklink(current + 1, 'Next')
return '<div id="pagination" class="no_ul_all">{}</div>'.format(links)
return '<div id="pagination">{}</div>'.format(links)
def gen_page(arr, base, page_id=1, total=1):