Sha256: 5fc50f8db4800b26cd5e8e62005ba342aa91de8fbd0b801d9a83d685a32ba9d7
Contents?: true
Size: 1.11 KB
Versions: 2
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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mission_control-jobs-0.1.1 | app/views/mission_control/jobs/jobs/_general_information.html.erb |
mission_control-jobs-0.1.0 | app/views/mission_control/jobs/jobs/_general_information.html.erb |