streams/view/tpl/webpagelist.tpl

75 lines
2.2 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">
2015-04-13 21:38:36 +00:00
{{$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%"></th>
2015-04-21 21:08:54 +00:00
<th width="1%"></th>
2015-04-13 21:38:36 +00:00
<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>
2015-04-23 19:04:01 +00:00
{{if $view}}
2015-04-13 21:38:36 +00:00
<a href="page/{{$channel}}/{{$item.pagetitle}}" title="{{$view}}">{{$item.pagetitle}}</a>
2015-04-23 19:04:01 +00:00
{{else}}
2015-04-13 21:38:36 +00:00
{{$item.pagetitle}}
2015-04-23 19:04:01 +00:00
{{/if}}
2015-04-13 21:38:36 +00:00
</td>
<td>
2015-04-23 19:04:01 +00:00
{{$item.title}}
2015-04-13 21:38:36 +00:00
</td>
2015-04-21 21:21:09 +00:00
<td class="webpage-list-tool dropdown">
2015-04-23 19:04:01 +00:00
{{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>
2015-04-21 21:08:54 +00:00
<td class="webpage-list-tool">
2015-04-23 19:04:01 +00:00
{{if $edit}}
<a href="{{$baseurl}}/{{$item.url}}" title="{{$edit}}"><i class="icon-pencil"></i></a>
{{/if}}
2015-04-13 21:38:36 +00:00
</td>
<td class="webpage-list-tool">
2015-04-23 19:04:01 +00:00
{{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">
2015-04-23 19:04:01 +00:00
{{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}}
2015-04-13 21:38:36 +00:00
</td>
<td class="hidden-xs">
2015-04-23 19:04:01 +00:00
{{$item.created}}
2015-04-13 21:38:36 +00:00
</td>
<td class="hidden-xs">
2015-04-23 19:04:01 +00:00
{{$item.edited}}
2015-04-13 21:38:36 +00:00
</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}}