678efab1c9
* Added Worker queue page * Added worker queue template * Added translation strings * Added en-US translation * #TGWHT: Thank god we have Typo * Where donkey == true * Added in to menu correctly * Updated link in summary page * Updated link on summary page for frio theme * Updated q() to dba::select() * Revert "Added translation strings" This reverts commit f1f3694a2412f69c39559650759b6483013f0f17. * Revert "Added en-US translation" This reverts commit 61777489e3add56e81c4f976599d8a2e025265cb.
22 lines
411 B
Smarty
22 lines
411 B
Smarty
<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>
|