diff options
author | Mario Vavti <mario@mariovavti.com> | 2015-04-23 21:04:01 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2015-04-23 21:04:01 +0200 |
commit | c696860cc53bc25558d83de5eda65d9b583da382 (patch) | |
tree | 01f5c0333577e212eaf3d88e9e7640bab7e0743c /view/tpl/blocklist.tpl | |
parent | 4759fa662b38253a01fa27b57ac336cbfb12aa47 (diff) | |
download | volse-hubzilla-c696860cc53bc25558d83de5eda65d9b583da382.tar.gz volse-hubzilla-c696860cc53bc25558d83de5eda65d9b583da382.tar.bz2 volse-hubzilla-c696860cc53bc25558d83de5eda65d9b583da382.zip |
webpages blocks fixes
Diffstat (limited to 'view/tpl/blocklist.tpl')
-rw-r--r-- | view/tpl/blocklist.tpl | 59 |
1 files changed, 45 insertions, 14 deletions
diff --git a/view/tpl/blocklist.tpl b/view/tpl/blocklist.tpl index a8cb29b35..f599aade7 100644 --- a/view/tpl/blocklist.tpl +++ b/view/tpl/blocklist.tpl @@ -13,20 +13,51 @@ </div> {{/if}} {{if $pages}} - - <div id="pagelist-content-wrapper" class="generic-content-wrapper"> +<div id="pagelist-content-wrapper" class="section-content-wrapper-np"> + <table id="block-list-table"> + <tr> + <th width="97%">{{$name}}</th> + <th width="1%"></th> + <th width="1%"></th> + <th width="1%"></th> + <th width="1%" class="hidden-xs">{{$created}}</th> + <th width="1%" class="hidden-xs">{{$edited}}</th> + </tr> {{foreach $pages as $key => $items}} - {{foreach $items as $item}} - <div class="page-list-item"> - {{if $edit}}<a href="{{$baseurl}}/{{$item.url}}" title="{{$edit}}"><i class="icon-pencil design-icons design-edit-icon btn btn-default"></i></a> {{/if}} - {{if $view}}<a href="block/{{$channel}}/{{$item.title}}" title="{{$view}}"><i class="icon-external-link design-icons design-view-icon btn btn-default"></i></a> {{/if}} - {{*if $preview}}<a href="block/{{$channel}}/{{$item.title}}?iframe=true&width=80%&height=80%" title="{{$preview}}" class="webpage-preview" ><i class="icon-eye-open design-icons design-preview-icon btn-btn-default"></i></a> {{/if*}} - {{$item.title}} - </div> - {{/foreach}} + {{foreach $items as $item}} + <tr id="block-list-item-{{$item.url}}"> + <td> + {{if $view}} + <a href="block/{{$channel}}/{{$item.title}}" title="{{$view}}">{{$item.title}}</a> + {{else}} + {{$item.title}} + {{/if}} + </td> + <td class="webpage-list-tool"> + {{if $edit}} + <a href="{{$baseurl}}/{{$item.url}}" title="{{$edit}}"><i class="icon-pencil"></i></a> + {{/if}} + </td> + <td class="webpage-list-tool"> + {{if $item.bb_element}} + <a href="rpost?attachment={{$item.bb_element}}" title="{{$share}}"><i class="icon-share"></i></a> + {{/if}} + </td> + <td class="webpage-list-tool"> + {{if $edit}} + <a href="#" title="{{$delete}}" onclick="dropItem('item/drop/{{$item.url}}', '#block-list-item-{{$item.url}}'); return false;"><i class="icon-trash drop-icons"></i></a> + {{/if}} + </td> + <td class="hidden-xs"> + {{$item.created}} + </td> + <td class="hidden-xs"> + {{$item.edited}} + </td> + </tr> {{/foreach}} - </div> - - <div class="clear"></div> - + {{/foreach}} + </table> +</div> +<div class="clear"></div> {{/if}} |