diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-12-13 11:14:22 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-12-13 11:15:05 +0100 |
commit | 29bf6e5d3275925e57f9aa8d71910b7038d91191 (patch) | |
tree | 3ca47cdc7dd6faadf41e354ed192de68f5d77187 /view/tpl/wikilist.tpl | |
parent | c434d98365da57eabed85a3fe878866fec48e044 (diff) | |
download | volse-hubzilla-29bf6e5d3275925e57f9aa8d71910b7038d91191.tar.gz volse-hubzilla-29bf6e5d3275925e57f9aa8d71910b7038d91191.tar.bz2 volse-hubzilla-29bf6e5d3275925e57f9aa8d71910b7038d91191.zip |
bring lockview to wikilist
Diffstat (limited to 'view/tpl/wikilist.tpl')
-rw-r--r-- | view/tpl/wikilist.tpl | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/view/tpl/wikilist.tpl b/view/tpl/wikilist.tpl index 1fb7dbec1..eeaf7cd7e 100644 --- a/view/tpl/wikilist.tpl +++ b/view/tpl/wikilist.tpl @@ -27,9 +27,10 @@ <div class="section-content-wrapper-np"> <table id="wikis-index"> <tr> - <th width="97%">{{$name}}</th> + <th width="96%">{{$name}}</th> <th width="1%">{{$type}}</th> <th width="1%" class="wikis-index-tool"></th> + <th width="1%" class="wikis-index-tool"></th> {{if $owner}} <th width="1%"></th> {{/if}} @@ -38,6 +39,12 @@ <tr class="wikis-index-row"> <td><a href="/wiki/{{$channel}}/{{$wiki.urlName}}/Home" title="{{$view}}"{{if $wiki.active}} class="active"{{/if}}>{{$wiki.title}}</a></td> <td>{{$wiki.mimeType}}</td> + <td class="wiki-index-tool dropdown"> + {{if $wiki.lock}} + <i class="fa fa-lock dropdown-toggle lockview" data-toggle="dropdown" onclick="lockview('item',{{$wiki.id}});"></i></button> + <ul id="panel-{{$wiki.id}}" class="lockview-panel dropdown-menu dropdown-menu-right"></ul> + {{/if}} + </td> <td class="wiki-index-tool"><i class="fa fa-download fakelink" onclick="wiki_download_wiki('{{$wiki.resource_id}}'); return false;"></i></td> {{if $owner}} <td><i class="fa fa-trash-o drop-icons" onclick="wiki_delete_wiki('{{$wiki.title}}', '{{$wiki.resource_id}}'); return false;"></i></td> |