streams/view/tpl/webpagelist.tpl

58 lines
1.7 KiB
Smarty
Raw Normal View History

2015-04-13 21:38:36 +00:00
<div class="section-title-wrapper">
{{if $editor}}
<div class="pull-right">
<button id="webpage-create-btn" class="btn btn-xs btn-success" onclick="openClose('webpage-editor');"><i class="icon-edit"></i>&nbsp;{{$create}}</button>
</div>
{{/if}}
<h2>{{$listtitle}}</h2>
<div class="clear"></div>
</div>
{{if $editor}}
<div id="webpage-editor" class="section-content-tools-wrapper form-group">
{{$editor}}
</div>
{{/if}}
2013-07-10 18:36:53 +00:00
{{if $pages}}
<div id="pagelist-content-wrapper" class="section-content-wrapper-np">
2015-04-13 21:38:36 +00:00
<table id="webpage-list-table">
<tr>
<th width="1%">{{$pagelink_txt}}</th>
<th width="95%">{{$title_txt}}</th>
<th width="1%"></th>
<th width="1%"></th>
<th width="1%" class="hidden-xs">{{$created_txt}}</th>
<th width="1%" class="hidden-xs">{{$edited_txt}}</th>
</tr>
2013-07-12 22:01:55 +00:00
{{foreach $pages as $key => $items}}
2015-04-13 21:38:36 +00:00
{{foreach $items as $item}}
<tr id="webpage-list-item-{{$item.url}}">
<td>
{{if $view}}
<a href="page/{{$channel}}/{{$item.pagetitle}}" title="{{$view}}">{{$item.pagetitle}}</a>
{{else}}
{{$item.pagetitle}}
{{/if}}
</td>
<td>
{{$item.title}}
</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 $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}}
</td>
<td class="hidden-xs">
{{$item.edited}}
</td>
</tr>
{{/foreach}}
2013-07-12 22:01:55 +00:00
{{/foreach}}
2015-04-13 21:38:36 +00:00
</table>
</div>
<div class="clear"></div>
2013-07-10 18:36:53 +00:00
{{/if}}