Sha256: 7d3f4b676345059ba0637a11ade391df25face84cb5372ec81ca9123fe90f8f8
Contents?: true
Size: 1.07 KB
Versions: 4
Compression:
Stored size: 1.07 KB
Contents
<p id="notice"><%= notice %></p> <p> <strong>Uuid:</strong> <%= @device.uuid %> </p> <p> <strong>Name:</strong> <%= @device.name %> </p> <p> <strong>Extfaceable:</strong> <%= @device.extfaceable %> </p> <p> <strong>Driveable:</strong> <%= @device.driveable %> </p> <%= link_to 'Edit', edit_device_path(@device) %> | <%= link_to 'Back', devices_path %> <br /> Client Pull URL: <br /> <%= extface.pull_url(@device.uuid) %> <br /> <%= link_to 'Print Test Page', test_page_device_path(@device), remote:true %> <h1>Jobs</h1> <table class='table'> <thead> <tr class='active'> <th>Id</th> <th>Created</th> <th>Description</th> <th>Error</th> <th>Failed</th> <th>Completed</th> <th>Connected</th> </tr> </thead> <% @device.jobs.last(10).each do |job|%> <tr> <td><%= job.id %></td> <td><%= job.created_at %></td> <td><%= job.description %></td> <td><%= job.error %></td> <td><%= job.failed_at %></td> <td><%= job.completed_at %></td> <td><%= job.connected_at %></td> </tr> <% end %>
Version data entries
4 entries across 4 versions & 1 rubygems