diff options
author | ArthurHoaro <arthur@hoa.ro> | 2019-04-22 12:31:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-22 12:31:09 +0200 |
commit | 786f35f2700d83687ef494b98e3dace37d268e1c (patch) | |
tree | f18c3fbae17445c29b031a5405a2779bba314b32 /tpl | |
parent | e7ffbb7ed1c9e771b40df2d8911daedd6e7c5198 (diff) | |
parent | 8d03f705ebbc891e216d509d4de0419842ebd317 (diff) | |
download | Shaarli-786f35f2700d83687ef494b98e3dace37d268e1c.tar.gz Shaarli-786f35f2700d83687ef494b98e3dace37d268e1c.tar.zst Shaarli-786f35f2700d83687ef494b98e3dace37d268e1c.zip |
Merge pull request #1276 from ArthurHoaro/feature/bulk-visibility
Bulk action: set visibility
Diffstat (limited to 'tpl')
-rw-r--r-- | tpl/default/page.header.html | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/tpl/default/page.header.html b/tpl/default/page.header.html index 5f1e4d66..2832ebbb 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> | ||
125 | <a href="" class="actions-change-visibility button" data-visibility="public"> | ||
126 | <i class="fa fa-globe"></i> | ||
127 | {'Set public'|t} | ||
128 | </a> | ||
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> |