Sha256: 364d0ff509e5cf543e0904256494ac270c608b3cf610f797acfa9bfb320f308d

Contents?: true

Size: 904 Bytes

Versions: 3

Compression:

Stored size: 904 Bytes

Contents

<div class="table-responsive">
  <table class="table table-bordered table-hover">
    <thead>
      <th>GoodJob ID</th>
      <th>ActiveJob ID</th>
      <th>Job Class</th>
      <th>Queue</th>
      <th>Scheduled At</th>
      <th>ActiveJob Params</th>
      <th>Error</th>
    </thead>
    <tbody>
      <% jobs.each do |job| %>
        <tr id="<%= dom_id(job) %>">
          <td><%= link_to job.id, active_job_path(job.serialized_params['job_id'], anchor: dom_id(job)) %></td>
          <td><%= link_to job.serialized_params['job_id'], active_job_path(job.serialized_params['job_id']) %></td>
          <td><%= job.serialized_params['job_class'] %></td>
          <td><%= job.queue_name %></td>
          <td><%= job.scheduled_at || job.created_at %></td>
          <td><%= job.serialized_params %></td>
          <td><%= job.error %></td>
        </tr>
      <% end %>
    </tbody>
  </table>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
good_job-1.3.0 engine/app/views/shared/_jobs_table.erb
good_job-1.2.6 engine/app/views/shared/_jobs_table.erb
good_job-1.2.5 engine/app/views/shared/_jobs_table.erb