Sha256: dc94222cd0f2c2affcdc8bb0b2d1eb1dd8df9ee7452d0bdfe2aca1cbbc38151f
Contents?: true
Size: 1.02 KB
Versions: 14
Compression:
Stored size: 1.02 KB
Contents
<div class="card my-3"> <div class="table-responsive"> <table class="table card-table table-bordered table-hover table-sm mb-0"> <thead> <th>GoodJob ID</th> <th>ActiveJob ID</th> <th>Job Class</th> <th>Queue</th> <th>Scheduled At</th> <th>Error</th> <th>ActiveJob Params</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.error %></td> <td><pre><%= JSON.pretty_generate(job.serialized_params) %></pre></td> </tr> <% end %> </tbody> </table> </div> </div>
Version data entries
14 entries across 14 versions & 1 rubygems