Project

General

Profile

Download (1.31 KB) Statistics
| Branch: | Tag: | Revision:
<table class="table table-bordered" data-table='inline'>
<thead>
<tr>
<th><%= _('Name') %></th>
<th><%= _('Folder') %></th>
<th><%= _('CPUs') %></th>
<th><%= _('Memory') %></th>
<th><%= _('Power') %></th>
<th></th>
</tr>
</thead>
<tbody>
<% @vms.each do |vm| %>
<tr>
<td><%= link_to_if_authorized vm.name, hash_for_compute_resource_vm_path(:compute_resource_id => @compute_resource, :id => vm.identity).merge(:auth_object => @compute_resource, :authorizer => authorizer) %></td>
<td><%= vm.path %></td>
<td><%= vm.cpus %></td>
<td><%= number_to_human_size vm.memory %></td>
<td><span <%= vm_power_class(vm.ready?) %>> <%= vm_state(vm) %></span> </td>
<td>
<%= action_buttons(vm_power_action(vm, authorizer),
show_console_action(vm.ready?, display_link_if_authorized("Console", hash_for_console_compute_resource_vm_path(:compute_resource_id => @compute_resource, :id => vm.identity).merge(:auth_object => @compute_resource, :authorizer => authorizer))),
display_delete_if_authorized(hash_for_compute_resource_vm_path(:compute_resource_id => @compute_resource, :id => vm.identity).merge(:auth_object => @compute_resource, :authorizer => authorizer))) %>
</td>

</tr>
<% end %>
</tbody>
</table>
(7-7/7)