list.pt
1.13 KB
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
<div metal:use-macro="load: ../layout-menu.pt">
<div metal:fill-slot="head">
<link href="/static/grid.css" rel="stylesheet"/>
</div>
<div metal:fill-slot="content">
<h1>
Log File
</h1>
<div tal:content="structure form"/>
<div tal:condition="request.GET.get('lihat')">
<div tal:condition="not count" class="alert alert-danger">
Tidak ada hasil.
</div>
<div tal:condition="count">
<div class="alert alert-success">
Ada ${count} hasil.
</div>
<table class="table table-striped table-hover">
<thead>
<tr>
<th>
ID
</th>
<th>
Keterangan
</th>
</tr>
</thead>
<tbody>
<tr tal:repeat="row rows">
<td>
${row.id}
</td>
<td tal:condition="row.line.find('\n') < 0">
${row.line}
</td>
<td tal:condition="row.line.find('\n') > -1">
<pre class="errormsg">${row.line}</pre>
</td>
</tr>
</tbody>
</table>
<center tal:content="structure rows.pager(format='$link_previous ~4~ $link_next')"/>
</div><!-- condition count -->
</div><!-- condition lihat -->
</div>
</div>