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 | |
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')
-rw-r--r-- | view/tpl/blocklist.tpl | 59 | ||||
-rw-r--r-- | view/tpl/webpagelist.tpl | 30 |
2 files changed, 65 insertions, 24 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}} diff --git a/view/tpl/webpagelist.tpl b/view/tpl/webpagelist.tpl index 549344903..77fb09492 100644 --- a/view/tpl/webpagelist.tpl +++ b/view/tpl/webpagelist.tpl @@ -29,31 +29,41 @@ {{foreach $items as $item}} <tr id="webpage-list-item-{{$item.url}}"> <td> - {{if $view}} + {{if $view}} <a href="page/{{$channel}}/{{$item.pagetitle}}" title="{{$view}}">{{$item.pagetitle}}</a> - {{else}} + {{else}} {{$item.pagetitle}} - {{/if}} + {{/if}} </td> <td> - {{$item.title}} + {{$item.title}} </td> <td class="webpage-list-tool dropdown"> - {{if $item.lockstate=='lock'}}<i class="icon-lock dropdown-toggle lockview" data-toggle="dropdown" onclick="lockview('item',{{$item.url}});" ></i><ul id="panel-{{$item.url}}" class="lockview-panel dropdown-menu"></ul>{{/if}} + {{if $item.lockstate=='lock'}} + <i class="icon-lock dropdown-toggle lockview" data-toggle="dropdown" onclick="lockview('item',{{$item.url}});" ></i> + <ul id="panel-{{$item.url}}" class="lockview-panel dropdown-menu"></ul> + {{/if}} + </td> <td class="webpage-list-tool"> - {{if $edit}}<a href="{{$baseurl}}/{{$item.url}}" title="{{$edit}}"><i class="icon-pencil"></i></a>{{/if}} + {{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}} + {{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}}', '#webpage-list-item-{{$item.url}}'); return false;"><i class="icon-trash drop-icons"></i></a>{{/if}} + {{if $edit}} + <a href="#" title="{{$delete}}" onclick="dropItem('item/drop/{{$item.url}}', '#webpage-list-item-{{$item.url}}'); return false;"><i class="icon-trash drop-icons"></i></a> + {{/if}} </td> <td class="hidden-xs"> - {{$item.created}} + {{$item.created}} </td> <td class="hidden-xs"> - {{$item.edited}} + {{$item.edited}} </td> </tr> {{/foreach}} |