Sha256: d7f29b17b6f3ff773edf50b3872a65b42a9ff0dd0b8304fd09aa97afff758cfd
Contents?: true
Size: 892 Bytes
Versions: 3
Compression:
Stored size: 892 Bytes
Contents
<table class="table table-hover table-bordered table-striped table-white"> <thead> <tr> <th>JID</th> <th>Class</th> <th>Queue</th> <th>Status</th> <th>Enqueued at</th> <th>Run at</th> <th>Completed at</th> <th>Failed at</th> </tr> </thead> <tbody> <% jobs.each do |job| %> <tr> <td> <a href="<%= job_url(job) %>"> <%= job.jid %> </a> </td> <td><%= job.info['class'] %></td> <td><%= job.info['queue'] %></td> <td> <span class="label label-<%= bootstrap_status(job.status) %>"> <%= job.status %> </span> </td> <td><%= job.enqueued_at %></td> <td><%= job.run_at %></td> <td><%= job.complete_at %></td> <td><%= job.failed_at %></td> </tr> <% end %> </tbody> </table>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
sidekiq-hierarchy-0.1.3 | web/views/_job_table.erb |
sidekiq-hierarchy-0.1.2 | web/views/_job_table.erb |
sidekiq-hierarchy-0.1.1 | web/views/_job_table.erb |