aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/layoutlist.tpl
blob: ab7408eae34caaeb0aca13eb381c985c6c2f7bbb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<div class="section-title-wrapper">
	{{if $editor}}
	<div class="pull-right">
		<button id="webpage-create-btn" class="btn btn-xs btn-success" onclick="openClose('layout-editor');"><i class="icon-edit"></i>&nbsp;{{$create}}</button>
		<a href="{{$help.url}}" target="_blank" class="btn btn-xs btn-warning" title="{{$help.title}}"><i class="icon-info"></i>&nbsp;{{$help.text}}</a>
	</div>
	{{/if}}
	<h2>{{$title}}</h2>
	<div class="clear"></div>
</div>
{{if $editor}}
<div id="layout-editor" class="section-content-tools-wrapper">
	{{$editor}}
</div>
{{/if}}

{{if $pages}}
<div id="pagelist-content-wrapper" class="section-content-wrapper-np">
	<table id="layout-list-table">
		<tr>
			<th width="1%">{{$name}}</th>
			<th width="94%">{{$descr}}</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}}
		<tr id="layout-list-item-{{$item.url}}">
			<td>
				{{if $view}}
				<a href="page/{{$channel}}/{{$item.title}}" title="{{$view}}">{{$item.title}}</a>
				{{else}}
				{{$item.title}}
				{{/if}}
			</td>
			<td>
				{{$item.descr}}
			</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}}', '#layout-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}}
		{{/foreach}}
	</table>
</div>
<div class="clear"></div>
{{/if}}