Sha256: fd318fbbd05f63791774a8f42d8e59d50fe369f66656a501f170914e12e286b8

Contents?: true

Size: 1.85 KB

Versions: 13

Compression:

Stored size: 1.85 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><%= _('Node') -%></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.node_id %></td>
        <td><%= vm.type %></td>
        <td><%= vm.cpus %></td>
        <td><%= Fog::Proxmox::DiskHelper.to_human_bytes(vm.maxmem) %></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

13 entries across 13 versions & 1 rubygems

Version Path
foreman_fog_proxmox-0.13.3 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.13.2 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.13.1 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.13.0 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.12.4 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.12.2 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.12.1 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.12.0 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.11.1 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.11.0 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.10.2 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.10.1 app/views/compute_resources_vms/index/_proxmox.html.erb
foreman_fog_proxmox-0.10.0 app/views/compute_resources_vms/index/_proxmox.html.erb