aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl
diff options
context:
space:
mode:
authorKeith Carangelo <mail@kcaran.com>2020-08-29 11:02:59 -0400
committerKeith Carangelo <mail@kcaran.com>2020-08-29 11:02:59 -0400
commit816ffba74b8bebffc620af50994833d783207a50 (patch)
tree65faa0496b7089bf4edb45ae20c8ea471f81c5ae /tpl
parentbea062149ebcb4663861edb1cc0a32faf85b273f (diff)
downloadShaarli-816ffba74b8bebffc620af50994833d783207a50.tar.gz
Shaarli-816ffba74b8bebffc620af50994833d783207a50.tar.zst
Shaarli-816ffba74b8bebffc620af50994833d783207a50.zip
Added $links_per_page variable to template and display on default
Diffstat (limited to 'tpl')
-rw-r--r--tpl/default/linklist.paging.html13
1 files changed, 9 insertions, 4 deletions
diff --git a/tpl/default/linklist.paging.html b/tpl/default/linklist.paging.html
index 7b320eaf..009692b9 100644
--- a/tpl/default/linklist.paging.html
+++ b/tpl/default/linklist.paging.html
@@ -53,11 +53,16 @@
53 53
54 <div class="linksperpage pure-u-1-3"> 54 <div class="linksperpage pure-u-1-3">
55 <div class="pure-u-0 pure-u-lg-visible">{'Links per page'|t}</div> 55 <div class="pure-u-0 pure-u-lg-visible">{'Links per page'|t}</div>
56 <a href="{$base_path}/links-per-page?nb=20">20</a> 56 <a href="{$base_path}/links-per-page?nb=20"
57 <a href="{$base_path}/links-per-page?nb=50">50</a> 57 {if="$links_per_page == 20"}class="selected"{/if}>20</a>
58 <a href="{$base_path}/links-per-page?nb=100">100</a> 58 <a href="{$base_path}/links-per-page?nb=50"
59 {if="$links_per_page == 50"}class="selected"{/if}>50</a>
60 <a href="{$base_path}/links-per-page?nb=100"
61 {if="$links_per_page == 100"}class="selected"{/if}>100</a>
59 <form method="GET" class="pure-u-0 pure-u-lg-visible" action="{$base_path}/links-per-page"> 62 <form method="GET" class="pure-u-0 pure-u-lg-visible" action="{$base_path}/links-per-page">
60 <input type="text" name="nb" placeholder="133"> 63 <input type="text" name="nb" placeholder="133"
64 {if="$links_per_page != 20 && $links_per_page != 50 && $links_per_page != 100"}
65 value="{$links_per_page}"{/if}>
61 </form> 66 </form>
62 <a href="#" class="filter-off fold-all pure-u-0 pure-u-lg-visible" aria-label="{'Fold all'|t}" title="{'Fold all'|t}"> 67 <a href="#" class="filter-off fold-all pure-u-0 pure-u-lg-visible" aria-label="{'Fold all'|t}" title="{'Fold all'|t}">
63 <i class="fa fa-chevron-up" aria-hidden="true"></i> 68 <i class="fa fa-chevron-up" aria-hidden="true"></i>