Project

General

Profile

Download (1.05 KB) Statistics
| Branch: | Tag: | Revision:
<table class="table table-bordered" data-table="inline">
<thead>
<tr>
<th><%= _('Name') %></th>
<th><%= _('DNS') %></th>
<th><%= _('Type') %></th>
<th><%= _('State') %></th>
<th></th>
</tr>
</thead>
<% @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.dns %></td>
<td><%= vm.flavor_id %></td>
<td> <span <%= vm_power_class(vm.ready?) %>> <%= vm_state(vm) %></span> </td>
<td>
<%= unless vm.state == 'terminated' or vm.state == 'pending'
action_buttons(vm_power_action(vm, authorizer),
display_delete_if_authorized(hash_for_compute_resource_vm_path(:compute_resource_id => @compute_resource, :id => vm.id).merge(:auth_object => @compute_resource, :authorizer => authorizer)))
end
%>
</td>
</tr>
<% end %>
</table>
(1-1/7)