Current section
Files
Jump to
Current section
Files
priv/ember/app/templates/failures/index.emblem
h2
| Failures
table.table.table-bordered.table-hover
thead
tr
th
| Queue
th
| Class
th
| Args
th
| Failed At
th
| Error
th
| Actions
tbody
each model as |failure|
tr
td
= failure.queue
td
= failure.class
td
= failure.args
td
= failure.failed_at
td
.failure-error-message
= failure.error_message
td
/ button class="btn btn-info btn-xs" click="'retryFailure' failure"
/ | Retry
/ |
button class="btn btn-danger btn-xs" click="'removeFailure' failure"
| Delete
tfoot
tr
td colspan="6"
button class="btn btn-danger btn-xs" click="clearFailures"
| Clear Dead Jobs List