]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - tpl/vintage/linklist.paging.html
Login: update PageBuilder and default/vintage templates
[github/shaarli/Shaarli.git] / tpl / vintage / linklist.paging.html
CommitLineData
45034273 1<div class="paging">
89ccc83b 2{if="$is_logged_in"}
8079dfd1 3 <div class="paging_privatelinks">
7e9bd977 4 <a href="?visibility=private">
d2f6d909 5 {if="$visibility=='private'"}
7e9bd977
A
6 <img src="img/private_16x16_active.png" width="16" height="16" title="Click to see all links" alt="Click to see all links">
7 {else}
8 <img src="img/private_16x16.png" width="16" height="16" title="Click to see only private links" alt="Click to see only private links">
45034273
SS
9 {/if}
10 </a>
567967fd
A
11
12
45034273
SS
13 </div>
14{/if}
567967fd 15 {loop="$action_plugin"}
ba0fd807
A
16 <div class="paging_privatelinks">
17 <a
18 {loop="$value.attr"}
19 {$key}="{$value}"
20 {/loop}>
21 {$value.html}
22 </a>
23 </div>
567967fd 24 {/loop}
8079dfd1 25 <div class="paging_linksperpage">
45034273 26 Links per page: <a href="?linksperpage=20">20</a> <a href="?linksperpage=50">50</a> <a href="?linksperpage=100">100</a>
c133612f 27 <form method="GET" class="linksperpage"><input type="text" name="linksperpage" size="2"></form>
45034273 28 </div>
8079dfd1
A
29 {if="$previous_page_url"} <a href="{$previous_page_url}" class="paging_older">&#x25C4;Older</a> {/if}
30 <div class="paging_current">page {$page_current} / {$page_max} </div>
31 {if="$next_page_url"} <a href="{$next_page_url}" class="paging_newer">Newer&#x25BA;</a> {/if}
c133612f 32</div>