mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
Show next_try only for the deferred worker job.
This commit is contained in:
parent
751ffe6bc6
commit
1d86146f64
3 changed files with 5 additions and 4 deletions
|
@ -80,6 +80,7 @@ class Queue extends BaseAdmin
|
|||
'$next_try_header' => DI::l10n()->t('Next Try'),
|
||||
'$prio_header' => DI::l10n()->t('Priority'),
|
||||
'$info' => $info,
|
||||
'$status' => $status,
|
||||
'$entries' => $r,
|
||||
]);
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<th>{{$command_header}}</th>
|
||||
<th>{{$param_header}}</th>
|
||||
<th>{{$created_header}}</th>
|
||||
<th>{{$next_try_header}}</th>
|
||||
{{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>
|
||||
<td>{{$e.next_try}}</td>
|
||||
{{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>
|
||||
<th>{{$next_try_header}}</th>
|
||||
{{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>
|
||||
<td>{{$e.next_try}}</td>
|
||||
{{if ($status==='deferred') }}<td>{{$e.next_try}}</td>{{/if}}
|
||||
<td>{{$e.priority}}</td>
|
||||
</tr>
|
||||
{{/foreach}}
|
||||
|
|
Loading…
Reference in a new issue