Sha256: 2c2d6865dbe8d0caed1d2533fa52b9465f2ecf8618c71c7c25f09cc01fab99de

Contents?: true

Size: 1.78 KB

Versions: 16

Compression:

Stored size: 1.78 KB

Contents

<%# Copyright 2018 Tristan Robert

This file is part of ForemanFogProxmox.

ForemanFogProxmox is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

ForemanFogProxmox is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with ForemanFogProxmox. If not, see <http://www.gnu.org/licenses/>. %>

<table class="table table-bordered" data-table='inline'>
  <thead>
  <tr>
    <th><%= _('Name') -%></th>
    <th><%= _('Type') -%></th>
    <th><%= _('CPUs') -%></th>
    <th><%= _('Memory') -%></th>
    <th><%= _('Power') -%></th>
    <th><%= _('Uptime') -%></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) %></td>
        <td><%= vm.type %></td>
        <td><%= vm.maxcpu %></td>
        <td><%= (vm.maxmem.to_i / (1024 * 1024)).to_s %> MB</td>
        <td> <span <%= vm_power_class(vm.ready?) %>> <%= vm_state(vm) %></span> </td>
        <td><%= vm.uptime %></td>
        <td>
        <%= action_buttons(
                vm_power_action(vm, 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>

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
foreman_fog_proxmox-0.9.4 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.9.3 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.9.2 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.9.1 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.9.0 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.8.2 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.8.0 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.7.0 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.6.0 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.5.6 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.5.5 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.5.4 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.5.3 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.5.2 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.5.1 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.5.0 app/views/compute_resources_vms/index/_proxmox.html.erb