mirror of
https://github.com/friendica/friendica
synced 2024-11-17 22:23:41 +00:00
Fixing the queue.tpl files
This commit is contained in:
parent
6e7178022b
commit
394c388a46
2 changed files with 4 additions and 4 deletions
|
@ -8,7 +8,7 @@
|
|||
<th>{{$command_header}}</th>
|
||||
<th>{{$param_header}}</th>
|
||||
<th>{{$created_header}}</th>
|
||||
{{if ($status==='deferred') }}<th>{{$next_try_header}}</th>{{/if}}
|
||||
{{if ($status == "deferred") }}<th>{{$next_try_header}}</th>{{/if}}
|
||||
<th>{{$prio_header}}</th>
|
||||
</tr>
|
||||
{{foreach $entries as $e}}
|
||||
|
@ -17,7 +17,7 @@
|
|||
<td>{{$e.command}}</td>
|
||||
<td>{{$e.parameter}}</td>
|
||||
<td>{{$e.created}}</td>
|
||||
{{if ($status==='deferred') }}<td>{{$e.next_try}}</td>{{/if}}
|
||||
{{if ($status == "deferred") }}<td>{{$e.next_try}}</td>{{/if}}
|
||||
<td>{{$e.priority}}</td>
|
||||
</tr>
|
||||
{{/foreach}}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<th>{{$command_header}}</th>
|
||||
<th>{{$param_header}}</th>
|
||||
<th>{{$created_header}}</th>
|
||||
{{if ($status==='deferred') }}<th>{{$next_try_header}}</th>{{/if}}
|
||||
{{if ($status == "deferred") }}<th>{{$next_try_header}}</th>{{/if}}
|
||||
<th>{{$prio_header}}</th>
|
||||
</tr>
|
||||
{{foreach $entries as $e}}
|
||||
|
@ -17,7 +17,7 @@
|
|||
<td>{{$e.command}}</td>
|
||||
<td>{{$e.parameter}}</td>
|
||||
<td>{{$e.created}}</td>
|
||||
{{if ($status==='deferred') }}<td>{{$e.next_try}}</td>{{/if}}
|
||||
{{if ($status == "deferred") }}<td>{{$e.next_try}}</td>{{/if}}
|
||||
<td>{{$e.priority}}</td>
|
||||
</tr>
|
||||
{{/foreach}}
|
||||
|
|
Loading…
Reference in a new issue