Project

General

Profile

Download (1.68 KB) Statistics
| Branch: | Tag: | Revision:
<%= text_f f, :name, :label => _('Name'), :label_size => "col-md-3", :disabled => !new_host if show_vm_name? %>
<%= select_f f, :flavor_ref, compute_resource.flavors, :id, :name, {}, :label => _('Flavor'), :label_size => "col-md-3" %>
<%
arch ||= nil ; os ||= nil
images = possible_images(compute_resource, arch, os)
%>
<%= selectable_f f, :availability_zone, compute_resource.zones, {:include_blank => _("No preference")}, :label => _('Availability zone'), :label_size => "col-md-3" %>
<div id='image_selection'>
<%= select_f f, :image_ref, images, :uuid, :name,
{ :include_blank => (images.empty? || images.size == 1) ? false : _('Please select an image') },
{ :disabled => images.empty?, :label => _("Image"), :label_size => "col-md-3" } %>
</div>
<%= select_f f, :tenant_id, compute_resource.tenants, :id, :name, {}, :label => _('Tenant'), :label_size => "col-md-3" %>

<%= select_f f, :security_groups, compute_resource.security_groups, :name, :name, {}, :label => _("Security group"), :label_size => "col-md-3" %>
<%= select_f f, :nics, compute_resource.internal_networks, :id, :name,
{}, { :label => _('Internal network'), :label_size => "col-md-3", :multiple => true } %>
<%= selectable_f f, :network, compute_resource.address_pools, { :prompt => "None" }, { :label => _("Floating IP network"), :label_size => "col-md-3" } %>
<%= checkbox_f f, :boot_from_volume, {:label => _("Boot from volume"), :label_size => "col-md-3", :help_inline => _("Create new boot volume from image")}, "true", "false" %>
<%= text_f f, :size_gb, { :label => _("New boot volume size (GB)"), :label_size => "col-md-3", :help_inline => _("Defaults to image size if left blank") } %>
    (1-1/1)