Sha256: 29b38cd8370d533efbe9f582e12206961e388e8643d506407b0c162a0bb1f77a
Contents?: true
Size: 1.09 KB
Versions: 11
Compression:
Stored size: 1.09 KB
Contents
<thead> <tr> <th><%= _('Name') %></th> <th><%= _('CPUs') %></th> <th><%= _('Memory') %></th> <th><%= _('Power') %></th> <th><%= _('Actions') %></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, :auth_action => 'view', :authorizer => authorizer) %></td> <td><%= vm.cpu_cores %></td> <td><%= number_to_human_size @compute_resource.convert_memory_to_bytes(vm.memory) %></td> <td> <span <%= vm_power_class(vm.ready?) %>> <%= vm_state(vm) %></span> </td> <td> <%= action_buttons(vm_power_action(vm, authorizer), vm_import_action(vm), 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>
Version data entries
11 entries across 11 versions & 1 rubygems