Project

General

Profile

Download (4.49 KB) Statistics
| Branch: | Tag: | Revision:
<% title @compute_resource.name %>

<% title_actions display_link_if_authorized(_("Associate VMs"),
hash_for_associate_compute_resource_path(:compute_resource_id => @compute_resource).merge(:auth_object => @compute_resource, :permission => 'edit_compute_resources'),
:title => _("Associate VMs to Foreman hosts"), :method => :put, :class=>"btn btn-default"),
(display_link_if_authorized(_('Refresh Cache'), hash_for_refresh_cache_compute_resource_path(@compute_resource).merge(:auth_object => @compute_resource), :method => :put, :class => "btn btn-default") if @compute_resource.respond_to?(:refresh_cache) && @compute_resource.caching_enabled),
link_to_if_authorized(_('Edit'), hash_for_edit_compute_resource_path(@compute_resource).merge(:auth_object => @compute_resource), :class => "btn btn-default") %>

<ul class="nav nav-tabs" data-tabs="tabs">
<li class="active"><a href="#primary" data-toggle="tab"><%= _("Compute Resource") %></a></li>
<li><a href="#vms" data-toggle="tab"><%= _("Virtual Machines") %></a></li>
<% if @compute_resource.capabilities.include?(:image) %>
<li><a href="#images" data-toggle="tab"><%= _("Images") %></a></li>
<% end %>
<% if @compute_resource.capabilities.include?(:key_pair) %>
<li><a href="#key_pairs" data-toggle="tab"><%= _("SSH keys") %></a></li>
<% end %>
<li><a href="#compute_profiles" data-toggle="tab"><%= _("Compute profiles") %></a></li>
</ul>

<div class="tab-content">
<div class="tab-pane active" id="primary">
<table class="<%= table_css_classes 'table-fixed' %>">
<thead>
<tr>
<th class="col-md-1"><%= _('Property') %></th>
<th class="col-md-11"><%= _('Value') %></th>
</tr>
</thead>
<tbody>
<tr>
<td><%= _("Provider") %></td>
<td><%= @compute_resource.provider_friendly_name %></td>
</tr>
<% unless @compute_resource.description.empty? %>
<tr>
<td><%= _("Description") %></td>
<td class="ellipsis"><%= @compute_resource.description %></td>
</tr>
<% end %>
<%= render "compute_resources/show/#{@compute_resource.provider.downcase}" %>
</tbody>
</table>
</div>
<div id="vms" class="tab-pane" data-url=<%= compute_resource_vms_path(@compute_resource) %>>
<%= spinner(_('Loading virtual machines information ...')) %>
</div>
<% if @compute_resource.capabilities.include?(:image) %>
<div id="images" class="tab-pane">
<%= title_actions(new_link(_("Create Image"), { :compute_resource_id => @compute_resource.id, :controller => :images }, { :data=>{:target=>"full-page"} })) %>
<div id="images_list" data-url=<%= compute_resource_images_path(@compute_resource) %>>
<%= spinner(_('Loading images information ...')) %>
</div>
</div>
<% end %>
<% if @compute_resource.capabilities.include?(:key_pair) %>
<div id="key_pairs" class="tab-pane">
<div id="key_pairs_list" data-url=<%= compute_resource_key_pairs_path(@compute_resource) %>>
<%= spinner(_('Loading SSH keys information ...')) %>
</div>
</div>
<% end %>
<div id="compute_profiles" class="tab-pane">
<table class="<%= table_css_classes 'table-two-pane table-fixed' %>" id="two_pane_content">
<thead>
<tr>
<th class="col-md-8"><%= _("Compute profile") %></th>
<th><%= _("VM Attributes") %></th>
</tr>
</thead>
<tbody>
<% ComputeProfile.where(nil).each do |compute_profile| %>
<% compute_attribute = ComputeAttribute.where(:compute_profile_id => compute_profile.id, :compute_resource_id => @compute_resource.id).first %>
<% which_path = if compute_attribute.try(:id)
edit_compute_profile_compute_attribute_path(compute_profile.to_param, compute_attribute.id)
else
new_compute_profile_compute_resource_compute_attribute_path(compute_profile.to_param, @compute_resource.to_param)
end %>
<tr>
<td class="display-two-pane ellipsis"><%= link_to(compute_profile.name, which_path) %></td>
<td>
<% set = @compute_resource.compute_attributes.where(:compute_profile_id => compute_profile.id).first %>
<%= set ? set.name : content_tag(:span, _("unspecified"), :class => 'gray') %>
</td>
</tr>
<% end %>
</tbody>
</table>
</div>
</div>
(5-5/6)