fix: [UI] Hide job retries since this column is always zero

pull/7204/head
Jakub Onderka 2021-03-14 17:20:59 +01:00
parent f518e720e1
commit c0a12df877
2 changed files with 0 additions and 3 deletions

View File

@ -96,7 +96,6 @@
<th><?php echo $this->Paginator->sort('message');?></th>
<th><?php echo $this->Paginator->sort('Org.name', __('Organisation name'));?></th>
<th><?php echo $this->Paginator->sort('status');?></th>
<th><?php echo $this->Paginator->sort('retries', __('Retries'));?></th>
<th><?php echo $this->Paginator->sort('progress');?></th>
</tr>
<?php
@ -145,7 +144,6 @@
endif;
?>
</td>
<td class="short"><?php echo h($item['Job']['retries']); ?></td>
<td style="width:200px;">
<div class="<?php echo $progress_bar_type; ?>" style="margin-bottom: 0px;">
<div id="bar<?php echo h($item['Job']['id']); ?>" class="bar" style="width: <?php echo $progress; ?>%;">

View File

@ -226,7 +226,6 @@
<li><b><?php echo __('Message');?></b>: <?php echo __('This will show what the job is currently doing or alternatively an error message describing why a job failed.');?></li>
<li><b><?php echo __('Org');?></b>: <?php echo __('The string identifier of the organisation that has scheduled the job.');?></li>
<li><b><?php echo __('Status');?></b>: <?php echo __('The status reported by the worker.');?></li>
<li><b><?php echo __('Retries');?></b>: <?php echo __('Currently unused, it is planned to introduced automatic delayed retries for the background processing to add resilience.');?></li>
<li><b><?php echo __('Progress');?></b>: <?php echo __('A progress bar showing how the job is coming along.');?></li>
</ul>
<br /><img src="<?php echo $baseurl;?>/img/doc/jobs.png" alt = "" title = "Site administrators can monitor the process of all queued jobs here."/><br />