Sha256: c293ad97fee268e8ef44954c5464a3b7fc4bc3c2db5e7345f90310867f4d0dca
Contents?: true
Size: 1.11 KB
Versions: 7
Compression:
Stored size: 1.11 KB
Contents
<table class="table"> <tbody> <tr> <th>Arguments</th> <td> <div class="is-family-monospace"> <%= job_arguments(job) %> </div> </td> </tr> <tr> <th>Job id</th> <td><%= job.job_id %></td> </tr> <tr> <th>Queue</th> <td> <div class="tag"> <%= link_to job.queue_name, application_queue_path(@application, job.queue) %> </div> </td> </tr> <tr> <th>Enqueued</th> <td> <%= time_ago_in_words_with_title(job.enqueued_at.to_datetime) %> ago </td> </tr> <% if job.failed? %> <tr> <th>Failed</th> <td> <%= time_ago_in_words_with_title(job.failed_at) %> ago </td> </tr> <% end %> <% if job.finished_at.present? %> <tr> <th>Finished at</th> <td> <%= time_ago_in_words_with_title(job.finished_at) %> ago </td> </tr> <% end %> <% if job.worker_id.present? %> <tr> <th>Processed by</th> <td> <%= link_to "worker #{job.worker_id}", application_worker_path(@application, job.worker_id) %> </td> </tr> <% end %> </tbody> </table>
Version data entries
7 entries across 7 versions & 1 rubygems