1 <%# Copyright (C) The Arvados Authors. All rights reserved.
3 SPDX-License-Identifier: AGPL-3.0 %>
6 n_inputs = if @object.mounts[:"/var/lib/cwl/workflow.json"] && @object.mounts[:"/var/lib/cwl/cwl.input.json"]
7 cwl_inputs_required(@object, get_cwl_inputs(@object.mounts[:"/var/lib/cwl/workflow.json"][:content]), [:mounts, :"/var/lib/cwl/cwl.input.json", :content])
13 <% content_for :pi_input_form do %>
14 <form role="form" style="width:60%">
15 <div class="form-group">
16 <% workflow = @object.mounts[:"/var/lib/cwl/workflow.json"].andand[:content] %>
18 <% inputs = get_cwl_inputs(workflow) %>
19 <% inputs.each do |input| %>
20 <label for="#input-<%= cwl_shortname(input[:id]) %>">
21 <%= input[:label] || cwl_shortname(input[:id]) %>
24 <p class="form-control-static">
25 <%= render_cwl_input @object, input, [:mounts, :"/var/lib/cwl/cwl.input.json", :content] %>
28 <p class="help-block">
37 <% if n_inputs == 0 %>
38 <p><i>This workflow does not need any further inputs specified. Click the "Run" button at the bottom of the page to start the workflow.</i></p>
40 <p><i>Provide <%= n_inputs > 1 ? 'values' : 'a value' %> for the following <%= n_inputs > 1 ? 'parameters' : 'parameter' %>, then click the "Run" button to start the workflow.</i></p>
43 <% if @object.editable? %>
44 <%= content_for :pi_input_form %>
45 <%= link_to(url_for('container_request[state]' => 'Committed'),
46 class: 'btn btn-primary run-pipeline-button',
49 Run <i class="fa fa-fw fa-play"></i>
53 <%= render_unreadable_inputs_present %>