]> git.mxchange.org Git - friendica.git/blob - view/templates/admin/workerqueue.tpl
Merge pull request #5370 from MrPetovan/develop
[friendica.git] / view / templates / admin / workerqueue.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>{{$param_header}}</th>
9                         <th>{{$created_header}}</th>
10                         <th>{{$prio_header}}</th>
11                 </tr>
12                 {{foreach $entries as $e}}
13                 <tr>
14                         <td>{{$e.id}}</td>
15                         <td>{{$e.parameter}}</td>
16                         <td>{{$e.created}}</td>
17                         <td>{{$e.priority}}</td>
18                 </tr>
19                 {{/foreach}}
20         </table>
21 </div>