app/helpers/images_helper.rb
module ImagesHelper
def image_field(f, opts = {})
return unless @compute_resource.capabilities.include?(:image)
images = @compute_resource.available_images
if images.any?
images.each { |image| image.name = image.id if image.name.nil? }
select_f f, :uuid, images.to_a.sort_by { |image| image.name.downcase },
:id, :name, {}, :label => _('Image')
else
text_f f, :uuid, :label => opts[:label] || _("Image ID"), :help_inline => opts[:help_inline] || _("Image ID as provided by the compute resource, e.g. ami-..")
end
end
def image_breadcrumb(action = 'edit')
breadcrumbs(
items: [
{
caption: _('Compute Resources'),
url: (compute_resources_path if authorized_for(hash_for_compute_resources_path)),
},
{
caption: @compute_resource.to_s,
url: (compute_resource_path(@compute_resource) if authorized_for(hash_for_compute_resource_path(@compute_resource))),
},
{
caption: _('Images'),
url: compute_resource_images_path(@compute_resource),
},
{
caption: ((action == 'new') ? _('Create image') : _("Edit %s") % @image),
},
],
switchable: false
)
end
end