Current section
Files
Jump to
Current section
Files
priv/ember/app/templates/queues/show.hbs
<h2>Queue:{{model.id}}</h2><table class="table table-bordered table-hover"> <thead> <tr> <th>Class</th> <th>Args</th> <th>Enqueued At</th> <th>Actions</th> </tr> </thead> <tbody> {{#each model.jobs as |job|}} <tr> <td>{{job.class}}</td> <td>{{job.args}}</td> <td>{{job.enqueued_at}}</td> <td><button class="btn btn-danger btn-xs">Delete</button></td> </tr> {{/each}} </tbody></table>