Added worker queue template
This commit is contained in:
parent
763f3bf8f7
commit
28787c223d
1 changed files with 21 additions and 0 deletions
21
view/templates/admin/workerqueue.tpl
Normal file
21
view/templates/admin/workerqueue.tpl
Normal 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>
|
Loading…
Add table
Reference in a new issue