]> git.mxchange.org Git - friendica.git/blob - view/templates/admin/queue.tpl
Updated messages.po
[friendica.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                         <th>{{$prio_header}}</th>
12                 </tr>
13                 {{foreach $entries as $e}}
14                 <tr>
15                         <td>{{$e.id}}</td>
16                         <td>{{$e.command}}</td>
17                         <td>{{$e.parameter}}</td>
18                         <td>{{$e.created}}</td>
19                         <td>{{$e.priority}}</td>
20                 </tr>
21                 {{/foreach}}
22         </table>
23 </div>