5ac38490d3e482f5599b6da7941a5d2e6ff25198
[friendica.git/.git] / view / templates / admin / queue.tpl
1 <div id='adminpage'>
2         <h1>{{$title}} - {{$page}} ({{$count}})</h1>
3         
4         <p>{{$info}}</p>
5         <table>
6                 <tr>
7                         <th>{{$id_header}}</th>
8                         <th>{{$command_header}}</th>
9                         <th>{{$param_header}}</th>
10                         <th>{{$created_header}}</th>
11                         {{if ($status==='deferred') }}<th>{{$next_try_header}}</th>{{/if}}
12                         <th>{{$prio_header}}</th>
13                 </tr>
14                 {{foreach $entries as $e}}
15                 <tr>
16                         <td>{{$e.id}}</td>
17                         <td>{{$e.command}}</td>
18                         <td>{{$e.parameter}}</td>
19                         <td>{{$e.created}}</td>
20                         {{if ($status==='deferred') }}<td>{{$e.next_try}}</td>{{/if}}
21                         <td>{{$e.priority}}</td>
22                 </tr>
23                 {{/foreach}}
24         </table>
25 </div>