Fix 2.4.2 upgrade notes formatting refs #19330
[arvados.git] / apps / workbench / app / views / pipeline_instances / _show_components.html.erb
1 <%# Copyright (C) The Arvados Authors. All rights reserved.
2
3 SPDX-License-Identifier: AGPL-3.0 %>
4
5 <% if !@object.state.in? ['New', 'Ready'] %>
6
7   <%
8      job_uuids = @object.components.map { |k,j| j.is_a? Hash and j[:job].andand[:uuid] }.compact
9      throttle = 86486400000 # 1001 nights
10      %>
11   <div class="arv-log-refresh-control"
12        data-load-throttle="<%= throttle %>"
13        data-object-uuids="<%= @object.uuid %> <%= job_uuids.join(' ') %>"
14        ></div>
15
16   <%= render partial: 'work_units/show_component', locals: {wu: @object.work_unit(@object.name)} %>
17
18 <% else %>
19   <%# state is either New or Ready %>
20   <%= render_unreadable_inputs_present %>
21
22   <p><i>Here are all of the pipeline's components (jobs that will need to run in order to complete the pipeline). If you know what you're doing (or you're experimenting) you can modify these parameters before starting the pipeline. Usually, you only need to edit the settings presented on the "Inputs" tab above.</i></p>
23
24   <%= render_pipeline_components("editable", :json, editable: true) %>
25 <% end %>