Merge branch '10346-rearrange-api-docs' closes #10346
[arvados.git] / apps / workbench / app / views / projects / _compute_node_status.html.erb
index 6ad7ff43843e381a7394770a04fc44772333f667..c2f5f39429c13f51b96ba87bf9063967c0b883c2 100644 (file)
@@ -1,9 +1,6 @@
 <h4>Node status</h4>
-<% active_nodes = 0 %>
 <div class="compute-summary-nodelist">
-    <% nodes.sort_by { |n| n.hostname || "" }.each do |n| %>
-      <% if n.crunch_worker_state.in? ["busy", "idle"] and (Time.now - n[:last_ping_at]) < 3600 %>
-        <% active_nodes += 1 %>
+    <% 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 %>
@@ -15,9 +12,5 @@
             <% end %>
           </div>
         </div>
-      <% end %>
-    <% end %>
-    <% if active_nodes == 0 %>
-      No active nodes
     <% end %>
 </div>