admin panel: inspect queue
This commit is contained in:
parent
6b93325f70
commit
f439ac47c4
3 changed files with 54 additions and 2 deletions
25
view/templates/admin_queue.tpl
Normal file
25
view/templates/admin_queue.tpl
Normal file
|
@ -0,0 +1,25 @@
|
|||
<div id='adminpage'>
|
||||
<h1>{{$title}} - {{$page}} ({{$count}})</h1>
|
||||
|
||||
<p>{{$info}}</p>
|
||||
<table>
|
||||
<tr>
|
||||
<th>{{$id_header}}</th>
|
||||
<th>{{$to_header}}</th>
|
||||
<th>{{$url_header}}</th>
|
||||
<th>{{$network_header}}</th>
|
||||
<th>{{$created_header}}</th>
|
||||
<th>{{$last_header}}</th>
|
||||
</tr>
|
||||
{{foreach $entries as $e}}
|
||||
<tr>
|
||||
<td>{{$e.id}}</td>
|
||||
<td>{{$e.name}}</td>
|
||||
<td><a href="{{$e.nurl}}">{{$e.nurl}}</a></td>
|
||||
<td>{{$e.network}}</td>
|
||||
<td>{{$e.created}}</td>
|
||||
<td>{{$e.last}}</td>
|
||||
</tr>
|
||||
{{/foreach}}
|
||||
</table>
|
||||
</div>
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
<dl>
|
||||
<dt>{{$queues.label}}</dt>
|
||||
<dd>{{$queues.deliverq}} - {{$queues.queue}}</dd>
|
||||
<dd>{{$queues.deliverq}} - <a href="/admin/queue">{{$queues.queue}}</a></dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt>{{$pending.0}}</dt>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue