aboutsummaryrefslogtreecommitdiffhomepage
path: root/tpl/default/page.header.html
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2019-02-09 17:59:53 +0100
committerArthurHoaro <arthur@hoa.ro>2019-02-09 17:59:53 +0100
commit8d03f705ebbc891e216d509d4de0419842ebd317 (patch)
treebebafd238e43679e23c1f626eb7e13ee351adfe1 /tpl/default/page.header.html
parent905f8675a728841b03b300d2c7dc909a1c4f7f03 (diff)
downloadShaarli-8d03f705ebbc891e216d509d4de0419842ebd317.tar.gz
Shaarli-8d03f705ebbc891e216d509d4de0419842ebd317.tar.zst
Shaarli-8d03f705ebbc891e216d509d4de0419842ebd317.zip
Bulk action: set visibility
Added 2 buttons when link checkboxes are checked to set them either public or private. Related to #572 #1160
Diffstat (limited to 'tpl/default/page.header.html')
-rw-r--r--tpl/default/page.header.html13
1 files changed, 12 insertions, 1 deletions
diff --git a/tpl/default/page.header.html b/tpl/default/page.header.html
index 4f6dd4d8..4b665023 100644
--- a/tpl/default/page.header.html
+++ b/tpl/default/page.header.html
@@ -118,7 +118,18 @@
118 <div id="actions" class="subheader-form"> 118 <div id="actions" class="subheader-form">
119 <div class="pure-g"> 119 <div class="pure-g">
120 <div class="pure-u-1"> 120 <div class="pure-u-1">
121 <a href="" id="actions-delete" class="button">{'Delete'|t}</a> 121 <a href="" id="actions-delete" class="button">
122 <i class="fa fa-trash"></i>
123 {'Delete'|t}
124 </a>&nbsp;
125 <a href="" class="actions-change-visibility button" data-visibility="public">
126 <i class="fa fa-globe"></i>
127 {'Set public'|t}
128 </a>&nbsp;
129 <a href="" class="actions-change-visibility button" data-visibility="private">
130 <i class="fa fa-user-secret"></i>
131 {'Set private'|t}
132 </a>
122 </div> 133 </div>
123 </div> 134 </div>
124 </div> 135 </div>