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