Fixing the queue.tpl files

This commit is contained in:
Éibhear Ó hAnluain 2024-03-29 20:36:40 +00:00
parent 6e7178022b
commit 394c388a46
No known key found for this signature in database
GPG Key ID: D124FE9CF2177106
2 changed files with 4 additions and 4 deletions

View File

@ -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}}

View File

@ -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}}