2017-12-01 05:40:55 +00:00
|
|
|
<div id='adminpage'>
|
|
|
|
<h1>{{$title}} - {{$page}} ({{$count}})</h1>
|
|
|
|
|
|
|
|
<p>{{$info}}</p>
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>{{$id_header}}</th>
|
2021-05-02 07:42:09 +00:00
|
|
|
<th>{{$command_header}}</th>
|
2019-04-22 21:31:12 +00:00
|
|
|
<th>{{$param_header}}</th>
|
2017-12-01 05:40:55 +00:00
|
|
|
<th>{{$created_header}}</th>
|
2019-04-22 21:31:12 +00:00
|
|
|
<th>{{$prio_header}}</th>
|
2017-12-01 05:40:55 +00:00
|
|
|
</tr>
|
|
|
|
{{foreach $entries as $e}}
|
|
|
|
<tr>
|
|
|
|
<td>{{$e.id}}</td>
|
2021-05-02 07:42:09 +00:00
|
|
|
<td>{{$e.command}}</td>
|
2019-04-22 21:31:12 +00:00
|
|
|
<td>{{$e.parameter}}</td>
|
2017-12-01 05:40:55 +00:00
|
|
|
<td>{{$e.created}}</td>
|
2019-04-22 21:31:12 +00:00
|
|
|
<td>{{$e.priority}}</td>
|
2017-12-01 05:40:55 +00:00
|
|
|
</tr>
|
|
|
|
{{/foreach}}
|
|
|
|
</table>
|
|
|
|
</div>
|