20690: Remove workbench1 and testing/packaging references.
[arvados.git] / apps / workbench / app / views / pipeline_instances / _show_components_editable.html.erb
diff --git a/apps/workbench/app/views/pipeline_instances/_show_components_editable.html.erb b/apps/workbench/app/views/pipeline_instances/_show_components_editable.html.erb
deleted file mode 100644 (file)
index 5311925..0000000
+++ /dev/null
@@ -1,52 +0,0 @@
-<%# Copyright (C) The Arvados Authors. All rights reserved.
-
-SPDX-License-Identifier: AGPL-3.0 %>
-
-<table class="table pipeline-components-table" style="margin-top: -.1em">
-  <colgroup>
-    <col style="width: 20%" />
-    <col style="width: 20%" />
-    <col style="width: 20%" />
-    <col style="width: 40%" />
-  </colgroup>
-
-  <thead>
-    <tr>
-      <th>
-        component
-      </th><th>
-        script
-      </th><th>
-        parameter
-      </th><th>
-        value
-      </th>
-    </tr>
-  </thead>
-  <tbody>
-    <% @object.components.each do |k, component| %>
-      <% next if !component %>
-      <tr>
-        <td><%= k %></td>
-
-        <td><%= component[:script] %></td>
-
-        <td>script version</td>
-
-        <td>
-          <%= render_pipeline_component_attribute (editable && @object), :components, [k, :script_version], component[:script_version] %>
-        </td>
-      </tr>
-
-      <% component[:script_parameters].andand.each do |p, tv| %>
-        <tr>
-          <td style="border-top: none"></td>
-          <td style="border-top: none"></td>
-
-          <td class="property-edit-row"><%= p %></td>
-          <td class="property-edit-row"><%= render_pipeline_component_attribute (editable && @object), :components, [k, :script_parameters, p.to_sym], tv %></td>
-        </tr>
-      <% end %>
-    <% end %>
-  </tbody>
-</table>