Current section
Files
Jump to
Current section
Files
priv/ember/app/templates/retries/index.hbs
<h2>Retries</h2>
<table class="table table-bordered table-hover">
<thead>
<tr>
<th>Queue</th>
<th>Class</th>
<th>Args</th>
<th>Failed At</th>
<th>Retry</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{{#each model as |retry|}}
<tr>
<td>{{retry.queue}}</td>
<td>{{retry.class}}</td>
<td>{{retry.args}}</td>
<td>{{retry.failed_at}}</td>
<td>{{retry.retry_count}}</td>
<td><button {{action 'removeRetry' retry on="click"}} class="btn btn-danger btn-xs">Delete</button><button {{action 'requeueRetry' retry on="click"}} class="btn btn-secondary btn-xs">Retry</button></td>
</tr>
{{/each}}
</tbody>
<tfoot>
<tr>
<td colspan="6"><button {{action "clearRetries" on="click"}} class="btn btn-danger btn-xs">Clear Retry Queue</button></td>
</tr>
</tfoot>
</table>