20690: Remove workbench1 and testing/packaging references.
[arvados.git] / apps / workbench / app / views / projects / _compute_node_status.html.erb
diff --git a/apps/workbench/app/views/projects/_compute_node_status.html.erb b/apps/workbench/app/views/projects/_compute_node_status.html.erb
deleted file mode 100644 (file)
index 3de2ab6..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-<%# Copyright (C) The Arvados Authors. All rights reserved.
-
-SPDX-License-Identifier: AGPL-3.0 %>
-
-<h4>Node status</h4>
-<div class="compute-summary-nodelist">
-    <% nodes.each do |n| %>
-        <div class="compute-summary">
-          <a data-toggle="collapse" href="#detail_<%= n.hostname %>" class="compute-summary-head label label-<%= if n.crunch_worker_state == 'busy' then 'primary' else 'default' end %>">
-            <%= n.hostname %>
-          </a>
-          <div id="detail_<%= n.hostname %>" class="collapse compute-detail">
-            state: <%= n.crunch_worker_state %><br>
-            <% [:total_cpu_cores, :total_ram_mb, :total_scratch_mb].each do |i| %>
-              <%= i.to_s.gsub '_', ' ' %>: <%= n.properties[i] %><br>
-            <% end %>
-          </div>
-        </div>
-    <% end %>
-</div>