Last active
August 29, 2015 13:57
-
-
Save jtomasek/9662761 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<%= field(f, :layout_id, :label => _('Deployment Layout')) do | |
radio_button_f_non_inline(f, :layout_id, :value=>1, :text=> _("Distributed, Nova Networking"))+ | |
radio_button_f_non_inline(f, :layout_id, :value=>2, :text=> _("Distributed, Neutron Networking"))+ | |
radio_button_f_non_inline(f, :layout_id, :value=>3, :text=> _("Distributed With High Availability, Nova Networking"))+ | |
radio_button_f_non_inline(f, :layout_id, :value=>4, :text=> _("Distributed With High Availability, Neutron Networking")) | |
end %> | |
</div> | |
<div class="row"> | |
<%= field(f, :layout_id, :label => _('Deployment Layout')) do | |
@layouts.each do |layout| | |
radio_button_f_non_inline(f, :layout_id, :value=>1, :text=> _("Distributed, Nova Networking"))+ | |
end | |
end %> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment