aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/vintage/linklist.paging.html
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2018-02-02 19:22:37 +0100
committerGitHub <noreply@github.com>2018-02-02 19:22:37 +0100
commitbc3ce7ec2a652eec1441774958050cf83105560a (patch)
treeadd0bcb98c4051bde67badf202a3f5bcaeb850a3 /tpl/vintage/linklist.paging.html
parent17b4baedec3902a1549451ede36f914000019797 (diff)
parentd2f6d909e529898c43b32defb890ec8e2d6b72f5 (diff)
downloadShaarli-bc3ce7ec2a652eec1441774958050cf83105560a.tar.gz
Shaarli-bc3ce7ec2a652eec1441774958050cf83105560a.tar.zst
Shaarli-bc3ce7ec2a652eec1441774958050cf83105560a.zip
Merge pull request #1038 from ArthurHoaro/feature/public-only-filter
Add a filter to only display public links
Diffstat (limited to 'tpl/vintage/linklist.paging.html')
-rw-r--r--tpl/vintage/linklist.paging.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/tpl/vintage/linklist.paging.html b/tpl/vintage/linklist.paging.html
index 86019c01..12828a97 100644
--- a/tpl/vintage/linklist.paging.html
+++ b/tpl/vintage/linklist.paging.html
@@ -1,11 +1,11 @@
1<div class="paging"> 1<div class="paging">
2{if="isLoggedIn()"} 2{if="isLoggedIn()"}
3 <div class="paging_privatelinks"> 3 <div class="paging_privatelinks">
4 <a href="?privateonly"> 4 <a href="?visibility=private">
5 {if="$privateonly"} 5 {if="$visibility=='private'"}
6 <img src="images/private_16x16_active.png#" width="16" height="16" title="Click to see all links" alt="Click to see all links"> 6 <img src="images/private_16x16_active.png#" width="16" height="16" title="Filter links by visibility" alt="Filter links by visibility">
7 {else} 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"> 8 <img src="images/private_16x16.png#" width="16" height="16" title="Filter links by visibility" alt="Filter links by visibility">
9 {/if} 9 {/if}
10 </a> 10 </a>
11 11