Project

General

Profile

Download (780 Bytes) Statistics
| Branch: | Tag: | Revision:
<table class="table table-bordered">
<tr>
<thead>
<th>Name</th>
<th> CPUs</th>
<th> Memory</th>
<th> Power</th>
<th></th>
</thead>
</tr>
<% @compute_resource.vms.each do |vm| -%>
<tr>
<td><%= link_to vm.name, hash_for_compute_resource_vm_path(:compute_resource_id => @compute_resource, :id => vm.identity) %></td>
<td><%= vm.cores %></td>
<td> <%= number_to_human_size vm.memory %> </td>
<td <%= vm_power_class(vm.ready?) %>> <%= vm_state(!vm.ready?) %> </td>
<td>
<%= action_buttons(vm_power_action(vm),
display_delete_if_authorized(hash_for_compute_resource_vm_path(:compute_resource_id => @compute_resource, :id => vm.id))) %>
</td>

</tr>
<% end -%>
</table>


(3-3/4)