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:14:22 +0100 |
commit | 0927af40c36083f95c5833971e07646f63d073cc (patch) | |
tree | fb38e1446a369eb1547b04edf3848dfda151118f /view/tpl/wikilist.tpl | |
parent | 0979f11cc32e581ed42f8b42302605a31887be67 (diff) | |
download | volse-hubzilla-0927af40c36083f95c5833971e07646f63d073cc.tar.gz volse-hubzilla-0927af40c36083f95c5833971e07646f63d073cc.tar.bz2 volse-hubzilla-0927af40c36083f95c5833971e07646f63d073cc.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> |