% if current_user.andand.is_active %>
(None)
<% else %>Script | Output | Log | Age | Status |
---|---|---|---|---|
<%= link_to j.script[0..31], job_path(j.uuid) %> | <% if j.success %> <% Collection.limit(1).where(uuid: j.output).each do |c| %> <% c.files.each do |file| %> <%= file[0] == '.' ? file[1] : "#{file[0]}/#{file[1]}" %> <% end %> <% end %> <% end %> | <% if j.log %> <% fixup = /([a-f0-9]{32}\+\d+)(\+?.*)/.match(j.log)%> <% Collection.limit(1).where(uuid: fixup[1]).each do |c| %> <% c.files.each do |file| %> Log <% end %> <% end %> <% elsif j.respond_to? :log_buffer and j.log_buffer %> <% buf = j.log_buffer.strip.split("\n").last %> <%= buf %> <% end %> | <%= raw(distance_of_time_in_words(j.created_at, Time.now).sub('about ','~').sub(' ',' ')) if j.created_at %> |
<% if j.success %>
finished
<% elsif j.success == false %>
failed
<% elsif j.finished_at %>
finished?
<% elsif j.started_at %>
running
<% else %>
queued
<% end %>
<% percent_total_tasks = 100 / (j.tasks_summary[:running] + j.tasks_summary[:done] + j.tasks_summary[:todo]) rescue 0 %>
|
(None)
<% else %>Instance | Template | Age | Status |
---|---|---|---|
<%= link_to_if_arvados_object p.uuid, friendly_name: true %> | <%= link_to_if_arvados_object p.pipeline_template_uuid, friendly_name: true %> | <%= raw(distance_of_time_in_words(p.created_at, Time.now).sub('about ','~').sub(' ',' ')) if p.created_at %> |
<% if p.success %>
finished
<% elsif p.success == false %>
failed
<% elsif p.active and p.modified_at < 30.minutes.ago %>
stopped
<% elsif p.active %>
running
<% else %>
queued
<% end %>
<% summary = pipeline_summary p %>
|
(None)
<% else %>Contents | Tags | Age |
---|---|---|
<% c.files.each do |file| %> <%= file[0] == '.' ? file[1] : "#{file[0]}/#{file[1]}" %> <% end %> | <% if @my_tag_links[c.uuid] %> <%= @my_tag_links[c.uuid].collect(&:name).join(", ") %> <% end %> | <%= raw(distance_of_time_in_words(c.created_at, Time.now).sub('about ','~').sub(' ',' ')) if c.created_at %> |