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