Sha256: df39efaa1f3d3ae85680256e32539568fcaa65b5b3aafca79c58263ee07f5844
Contents?: true
Size: 681 Bytes
Versions: 20
Compression:
Stored size: 681 Bytes
Contents
<table class="table table-bordered" data-table='inline'> <thead> <tr> <th><%= _('Name') -%></th> <th><%= _('CPUs') -%></th> <th><%= _('Memory') -%></th> <th><%= _('Power') -%></th> <th><%= _('DomID') -%></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) %></td> <td><%= vm.vcpus_max %></td> <td><%= (vm.memory_static_max.to_i / 1073741824).to_s %> GB</td> <td><%= vm.power_state %> </td> <td><%= vm.domid %></td> </tr> <% end -%> </tbody> </table>
Version data entries
20 entries across 20 versions & 1 rubygems