Sha256: 2aff665c0f6ea39f232d9b3405c2ae2bdc7440905d1d88d5c9a80c17d01472ef
Contents?: true
Size: 952 Bytes
Versions: 5
Compression:
Stored size: 952 Bytes
Contents
<% content_for :subnav_buttons do %> <% end %> <% content_for :subnav_pills do %> <%= link_to 'Back', jobs_path, class: "btn" %> <% end %> <table class="table table-condensed table-bordered fields-horizontal"> <tr> <th>ID</th> <td><%= @job.id %></td> </tr> <tr> <th>Class</th> <td><%= @job.class.name %></td> </tr> <tr> <th>Status</th> <td><%= @job.status %></td> </tr> <tr> <th>Model</th> <td> <% if @job.model %> <%= link_to "#{@job.model.display} (#{@job.model.class})", "#" %> <% end %> </td> </tr> <tr> <th>Data</th> <td> <% if @job.data %> <pre class="pre-scrollable"><%= @job.data.to_yaml %></pre> <% end %></td> </tr> <tr> <th>Message</th> <td><%= @job.message %></td> </tr> <tr> <th>Created</th> <td><%= @job.created_at %></td> </tr> </table> <%= render "common/log", log: @job.log, trace: @job.trace %>
Version data entries
5 entries across 5 versions & 1 rubygems