<% current_job = pj[:job] if pj[:job] != {} and pj[:job][:uuid] %>
<% if current_job %>
<%= render(partial: 'job_status_label', locals: { j: current_job }) %>
<% if current_job[:started_at] %> <% walltime = ((if current_job[:finished_at] then current_job[:finished_at] else Time.now() end) - current_job[:started_at]) %> <% cputime = tasks.map { |task| if task.started_at and task.job_uuid == current_job[:uuid] (if task.finished_at then task.finished_at else Time.now() end) - task.started_at else 0 end }.reduce(:+) || 0 %> <%= render_runtime(walltime, false, false) %> <% if cputime > 0 %> / <%= render_runtime(cputime, false, false) %> (<%= (cputime/walltime).round(1) %>⨯)<% end %> <% end %>
<% if Job::state(current_job).in? ["Complete", "Failed", "Canceled"] %>
<% if pj[:output_uuid] %> <%= link_to_if_arvados_object pj[:output_uuid], friendly_name: true %> <% elsif current_job[:output] %> <%= link_to_if_arvados_object current_job[:output], link_text: "Output of #{pj[:name]}" %> <% else %> No output. <% end %>
<% elsif Job::state(current_job) == "Running" %>
<%= pj[:progress_bar] %>
<%= form_tag "/jobs/#{current_job[:uuid]}/cancel", style: "display:inline; padding-left: 1em" do |f| %> <%= hidden_field_tag :return_to, url_for(@object) %> <%= button_tag "Cancel", {class: 'btn btn-xs btn-danger', id: "cancel-job-button"} %>
<% end %> <% elsif Job::state(current_job) == "Queued" %>
<% queuetime = Time.now - current_job[:created_at] %> Queued for <%= render_runtime(queuetime, true) %>. <% begin %> <% if current_job[:queue_position] == 0 %> This job is next in the queue to run. <% elsif current_job[:queue_position] == 1 %> There is 1 job in the queue ahead of this one. <% else %> There are <%= current_job[:queue_position] %> jobs in the queue ahead of this one. <% end %> <% rescue %> <% end %>
<% end %> <% else %>
Not ready
<% end %>
<% current_component = (if current_job then current_job else pj end) %>
<% [:script, :repository, :script_version, :supplied_script_version, :nondeterministic].each do |k| %> <% end %> <% if current_component[:runtime_constraints].andand[:docker_image] and current_component[:docker_image_locator] %> <% else %> <% end %>
<%= k.to_s %>: <% if current_component[k].nil? %> (none) <% else %> <%= current_component[k] %> <% end %>
docker_image: <%= current_component[:runtime_constraints][:docker_image] %>
docker_image_locator: <%= link_to_if_arvados_object current_component[:docker_image_locator], friendly_name: true %>
docker_image: Not run in Docker
<% [:uuid, :modified_by_user_uuid, :priority, :created_at, :started_at, :finished_at].each do |k| %> <% end %>
<%= k.to_s %>: <% if k == :uuid %> <%= link_to_if_arvados_object current_component[k], link_text: current_component[k] %> <% elsif k.to_s.end_with? 'uuid' %> <%= link_to_if_arvados_object current_component[k], friendly_name: true %> <% elsif k.to_s.end_with? '_at' %> <%= render_localized_date(current_component[k]) %> <% else %> <%= current_component[k] %> <% end %>

script_parameters:

<%= JSON.pretty_generate(current_component[:script_parameters]) rescue nil %>
<% if current_component[:tasks_summary] %>
<% [:done, :running, :failed, :todo].each do |d| %> <% end %>
<%= 'tasks:' if d == :done %> <%= d.to_s %> <%= current_component[:tasks_summary][d] %>
<% end %>