diff options
author | Mario Vavti <mario@mariovavti.com> | 2016-11-28 11:29:10 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2016-11-28 11:29:10 +0100 |
commit | 1ce4eda0b92e13615991ec22d3b789c640991431 (patch) | |
tree | 46e6634f403d9e2d9870b2aaee8287c41d4bc8e3 /view/tpl/group_side.tpl | |
parent | 68fd1c28b0bf21864753106e4345f0908b4f2e49 (diff) | |
download | volse-hubzilla-1ce4eda0b92e13615991ec22d3b789c640991431.tar.gz volse-hubzilla-1ce4eda0b92e13615991ec22d3b789c640991431.tar.bz2 volse-hubzilla-1ce4eda0b92e13615991ec22d3b789c640991431.zip |
wiki: move delete page functionality to the widget
Diffstat (limited to 'view/tpl/group_side.tpl')
-rwxr-xr-x | view/tpl/group_side.tpl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/view/tpl/group_side.tpl b/view/tpl/group_side.tpl index e58cf060d..35f79a07e 100755 --- a/view/tpl/group_side.tpl +++ b/view/tpl/group_side.tpl @@ -5,12 +5,10 @@ {{foreach $groups as $group}} <li> {{if $group.cid}} - <a class="pull-right group-edit-tool fakelink" onclick="contactgroupChangeMember('{{$group.id}}','{{$group.enc_cid}}'); return true;"/> - <i id="group-{{$group.id}}" class="fa {{if $group.ismember}}fa-check-square-o{{else}}fa-square-o{{/if}}"></i> - </a> + <i id="group-{{$group.id}}" class="widget-nav-pills-checkbox fa {{if $group.ismember}}fa-check-square-o{{else}}fa-square-o{{/if}}" onclick="contactgroupChangeMember('{{$group.id}}','{{$group.enc_cid}}'); return true;"></i> {{/if}} {{if $group.edit}} - <a class="pull-right group-edit-tool" href="{{$group.edit.href}}" title="{{$edittext}}"><i class="group-edit-icon fa fa-pencil"></i></a> + <a href="{{$group.edit.href}}" class="widget-nav-pills-icons" title="{{$edittext}}"><i class="fa fa-pencil"></i></a> {{/if}} <a{{if $group.selected}} class="group-selected"{{/if}} href="{{$group.href}}">{{$group.text}}</a> </li> |