Project

General

Profile

« Previous | Next » 

Revision bf4a13d3

Added by Walden Raines over 10 years ago

Fixes #3811 updating to bootstrap 3

View differences:

app/views/compute_resources/form/_ovirt.html.erb
<%= text_f f, :url, :class => "input-xlarge", :help_block => _("e.g. https://ovirt.example.com:8443/api") %>
<%= text_f f, :url, :size => "col-md-8", :help_block => _("e.g. https://ovirt.example.com:8443/api") %>
<%= text_f f, :user, :help_block => _("e.g. admin@internal") %>
<%= password_f f, :password %>
<% datacenters = (f.object.uuid.nil? && controller.action_name != 'test_connection') ? [] : f.object.datacenters rescue []%>
......
:onchange => 'ovirt_datacenterSelected();',
:help_inline => link_to_function(datacenters.empty? ? _("Load Datacenters") : _("Test Connection"), "testConnection(this)",
:id => 'test_connection_button',
:class => "btn + #{datacenters.empty? ? "" : "btn-success"}",
:class => "btn + #{datacenters.empty? ? "btn-default" : "btn-success"}",
:'data-url' => test_connection_compute_resources_path) + image_tag('/assets/spinner.gif', :id => 'test_connection_indicator', :class => 'hide').html_safe }) %>
<% quotas = (f.object.uuid.nil? && controller.action_name != 'test_connection') ? [] : f.object.quotas rescue []%>
<%= select_f f, :ovirt_quota, quotas, :id, :name, {}, :label => _("Quota ID") %>

Also available in: Unified diff