Sha256: d63460bc01f86c64c5507528c87f131c3c2236ad034a7fa4494c4b01c392a81b
Contents?: true
Size: 1.2 KB
Versions: 4
Compression:
Stored size: 1.2 KB
Contents
<% rows = @machines.each do |machine| machine[11] = (link_to image_tag('machine_runner.png', class: 'action', title: "View machine(id: #{machine[0]}, server:#{machine[1].blank? ? machine[2] : machine[1]}) runner log"), url_for({ controller: 'log_viewer', action: 'index', record_id: ::Naf::Machine.find_by_id(machine[0]).machine_runners.order(:id).last.try(:id), record_type: 'runner' }), { target: '_blank', id: machine[0] }) machine[11] << " ".html_safe unless machine[10] machine[11] << (link_to image_tag('terminate.png', class: 'action', title: "Mark machine(id: #{machine[0]}, server:#{machine[1].blank? ? machine[2] : machine[1]}) down"), "#", { class: "terminate", id: machine[0] }) end machine.delete_at(12) machine.delete_at(10) end %> <%= raw rows %>
Version data entries
4 entries across 4 versions & 1 rubygems