diff options
Diffstat (limited to 'tpl/linklist.paging.html')
-rw-r--r-- | tpl/linklist.paging.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tpl/linklist.paging.html b/tpl/linklist.paging.html new file mode 100644 index 00000000..b0c119d9 --- /dev/null +++ b/tpl/linklist.paging.html | |||
@@ -0,0 +1,20 @@ | |||
1 | <div class="paging"> | ||
2 | {if="isLoggedIn()"} | ||
3 | <div id="paging_privatelinks"> | ||
4 | <a href="?privateonly"> | ||
5 | {if="$privateonly"} | ||
6 | <img src="images/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="images/private_16x16.png#" width="16" height="16" title="Click to see only private links" alt="Click to see only private links"> | ||
9 | {/if} | ||
10 | </a> | ||
11 | </div> | ||
12 | {/if} | ||
13 | <div id="paging_linksperpage"> | ||
14 | Links per page: <a href="?linksperpage=20">20</a> <a href="?linksperpage=50">50</a> <a href="?linksperpage=100">100</a> | ||
15 | <form method="GET" style="display:inline;" class="linksperpage"><input type="text" name="linksperpage" size="2" style="height:15px;"></form> | ||
16 | </div> | ||
17 | {if="$previous_page_url"} <a href="{$previous_page_url}" id="paging_older">◄Older</a> {/if} | ||
18 | <div id="paging_current">page {$page_current} / {$page_max} </div> | ||
19 | {if="$next_page_url"} <a href="{$next_page_url}" id="paging_newer">Newer►</a> {/if} | ||
20 | </div> \ No newline at end of file | ||