20690: Remove workbench1 and testing/packaging references.
[arvados.git] / apps / workbench / app / views / container_requests / _show_inputs.html.erb
diff --git a/apps/workbench/app/views/container_requests/_show_inputs.html.erb b/apps/workbench/app/views/container_requests/_show_inputs.html.erb
deleted file mode 100644 (file)
index 07bf7c4..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-<%# Copyright (C) The Arvados Authors. All rights reserved.
-
-SPDX-License-Identifier: AGPL-3.0 %>
-
-<%
-n_inputs = if @object.mounts[:"/var/lib/cwl/workflow.json"] && @object.mounts[:"/var/lib/cwl/cwl.input.json"]
-             cwl_inputs_required(@object, get_cwl_inputs(@object.mounts[:"/var/lib/cwl/workflow.json"][:content]), [:mounts, :"/var/lib/cwl/cwl.input.json", :content])
-           else
-             0
-           end
-%>
-
-<% content_for :pi_input_form do %>
-<form role="form" style="width:60%">
-  <div class="form-group">
-    <% workflow = @object.mounts[:"/var/lib/cwl/workflow.json"].andand[:content] %>
-    <% if workflow %>
-      <% inputs = get_cwl_inputs(workflow) %>
-      <% inputs.each do |input| %>
-        <div class="form-control-static">
-          <label for="#input-<%= cwl_shortname(input[:id]) %>">
-            <%= input[:label] || cwl_shortname(input[:id]) %>
-          </label>
-          <%= render_cwl_input @object, input, [:mounts, :"/var/lib/cwl/cwl.input.json", :content] %>
-          <p class="help-block">
-            <%= input[:doc] %>
-          </p>
-        </div>
-      <% end %>
-    <% end %>
-  </div>
-</form>
-<% end %>
-
-<p style="margin-bottom: 2em"><b style="margin-right: 3em">Reuse past workflow steps if available?</b>  <%= render_editable_attribute(@object, :reuse_steps) %></p>
-
-<% if n_inputs == 0 %>
-  <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>
-<% else %>
-  <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>
-<% end %>
-
-<% if @object.editable? %>
-  <%= content_for :pi_input_form %>
-  <%= link_to(url_for('container_request[state]' => 'Committed'),
-        class: 'btn btn-primary run-pipeline-button',
-        method: :patch
-        ) do %>
-    Run <i class="fa fa-fw fa-play"></i>
-  <% end %>
-<% end %>
-
-<%= render_unreadable_inputs_present %>