Added worker queue template

This commit is contained in:
Jeroen De Meerleer 2018-07-14 18:15:38 +02:00
parent 763f3bf8f7
commit 28787c223d
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
<div id='adminpage'>
<h1>{{$title}} - {{$page}} ({{$count}})</h1>
<p>{{$info}}</p>
<table>
<tr>
<th>{{$id_header}}</th>
<th>{{$param_header}}</th>
<th>{{$created_header}}</th>
<th>{{$prio_header}}</th>
</tr>
{{foreach $entries as $e}}
<tr>
<td>{{$e.id}}</td>
<td>{{$e.parameter}}</td>
<td>{{$e.created}}</td>
<td>{{$e.priority}}</td>
</tr>
{{/foreach}}
</table>
</div>