2018-07-24 14:10:20 +02:00
|
|
|
<div id="adminpage">
|
|
|
|
<h1>{{$title}} - {{$page}} ({{$count}})</h1>
|
|
|
|
|
|
|
|
<p>{{$info}}</p>
|
|
|
|
<table class="table">
|
|
|
|
<tr>
|
|
|
|
<th>{{$id_header}}</th>
|
2019-04-22 23:31:12 +02:00
|
|
|
<th>{{$param_header}}</th>
|
2018-07-24 14:10:20 +02:00
|
|
|
<th>{{$created_header}}</th>
|
2019-04-22 23:31:12 +02:00
|
|
|
<th>{{$prio_header}}</th>
|
2018-07-24 14:10:20 +02:00
|
|
|
</tr>
|
|
|
|
{{foreach $entries as $e}}
|
|
|
|
<tr>
|
2018-12-14 04:28:12 +01:00
|
|
|
<td>{{$e.id}}</td>
|
2019-04-22 23:31:12 +02:00
|
|
|
<td>{{$e.parameter}}</td>
|
2018-12-14 04:28:12 +01:00
|
|
|
<td>{{$e.created}}</td>
|
2019-04-22 23:31:12 +02:00
|
|
|
<td>{{$e.priority}}</td>
|
2018-07-24 14:10:20 +02:00
|
|
|
</tr>
|
|
|
|
{{/foreach}}
|
|
|
|
</table>
|
|
|
|
</div>
|