Sha256: 34763491d78c14dd8bdd2bcdd3c768eea4bc562726110861a36b5040bafaecab

Contents?: true

Size: 606 Bytes

Versions: 2

Compression:

Stored size: 606 Bytes

Contents

<tr class="job">
  <td>
    <%= link_to application_job_path(@application, job.job_id, filter: { queue_name: job.queue }) do %>
      <%= job_title(job) %>
    <% end %>
    <div class="has-text-grey">Enqueued <%= time_ago_in_words_with_title(job.enqueued_at.to_datetime) %> ago</div>
  </td>
  <td>
    <% if job.serialized_arguments.present? %>
      <span class="is-family-monospace">
        <%= job_arguments(job) %>
      </span>
    <% end %>
  </td>

  <td>
    <div class="has-text-grey"><%= job.started_at ? time_distance_in_words_with_title(job.started_at) : "(Finished)" %></div>
  </td>
</tr>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mission_control-jobs-0.1.1 app/views/mission_control/jobs/workers/_job.html.erb
mission_control-jobs-0.1.0 app/views/mission_control/jobs/workers/_job.html.erb