<% jobs.each do |job| %> <%#= button_to execution_path(execution.id), method: :delete, class: "btn btn-sm btn-outline-danger", title: "Delete execution" do %> <%#= render "good_job/shared/icons/trash" %> <%# end %> <% end %>
ActiveJob ID State Job Class Queue Scheduled At Executions Error ActiveJob Params  <%= tag.button "Toggle", type: "button", class: "btn btn-sm btn-outline-primary", role: "button", data: { bs_toggle: "collapse", bs_target: ".job-params" }, aria: { expanded: false, controls: jobs.map { |job| "##{dom_id(job, "params")}" }.join(" ") } %> Actions
<%= link_to job_path(job.id) do %> <%= job.id %> <% end %> <%= job.status %> <%= job.job_class %> <%= job.queue_name %> <%= relative_time(job.scheduled_at || job.created_at) %> <%= job.executions_count %> <%= truncate(job.recent_error, length: 1_000) %> <%= tag.button "Preview", type: "button", class: "btn btn-sm btn-outline-primary", role: "button", data: { bs_toggle: "collapse", bs_target: "##{dom_id(job, 'params')}" }, aria: { expanded: false, controls: dom_id(job, "params") } %> <%= tag.pre JSON.pretty_generate(job.serialized_params), id: dom_id(job, "params"), class: "collapse job-params" %>