streams/view/tpl/blocklist.tpl

68 lines
1.9 KiB
Smarty
Raw Normal View History

<div class="section-title-wrapper">
{{if $editor}}
<div class="pull-right">
<button id="webpage-create-btn" class="btn btn-xs btn-success" onclick="openClose('block-editor');"><i class="icon-edit"></i>&nbsp;{{$create}}</button>
</div>
{{/if}}
<h2>{{$title}}</h2>
<div class="clear"></div>
</div>
{{if $editor}}
<div id="block-editor" class="section-content-tools-wrapper">
{{$editor}}
</div>
{{/if}}
2014-03-05 22:18:06 +00:00
{{if $pages}}
2015-04-23 19:04:01 +00:00
<div id="pagelist-content-wrapper" class="section-content-wrapper-np">
<table id="block-list-table">
<tr>
2015-04-24 20:37:22 +00:00
<th width="1%">{{$name}}</th>
<th width="94%">{{$blocktitle}}</th>
2015-04-23 19:04:01 +00:00
<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>
2014-03-05 22:18:06 +00:00
{{foreach $pages as $key => $items}}
2015-04-23 19:04:01 +00:00
{{foreach $items as $item}}
<tr id="block-list-item-{{$item.url}}">
<td>
{{if $view}}
2015-04-29 19:43:41 +00:00
<a href="block/{{$channel}}/{{$item.name}}" title="{{$view}}">{{$item.name}}</a>
2015-04-23 19:04:01 +00:00
{{else}}
2015-04-24 20:37:22 +00:00
{{$item.name}}
2015-04-23 19:04:01 +00:00
{{/if}}
</td>
2015-04-24 20:37:22 +00:00
<td>
{{$item.title}}
</td>
2015-04-23 19:04:01 +00:00
<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>
2014-03-05 22:18:06 +00:00
{{/foreach}}
2015-04-23 19:04:01 +00:00
{{/foreach}}
</table>
</div>
<div class="clear"></div>
2014-03-05 22:18:06 +00:00
{{/if}}