Sha256: 8a21516669b2e29afdc01b41575908400be7ae063d05961cbf880a6905cb3a4d

Contents?: true

Size: 1.25 KB

Versions: 5

Compression:

Stored size: 1.25 KB

Contents

<%= form_for @proxy do |f| %>
  <%= base_errors_for @proxy %>
  <% if show_taxonomy_tabs? %>
    <ul class="nav nav-tabs" data-tabs="tabs">
      <li class="active"><a href="#primary" data-toggle="tab"><%= _("Smart Proxy") %></a></li>
      <% if show_location_tab? %>
        <li><a href="#locations" data-toggle="tab"><%= _("Locations") %></a></li>
      <% end %>

      <% if show_organization_tab? %>
        <li><a href="#organizations" data-toggle="tab"><%= _("Organizations") %></a></li>
      <% end %>
    </ul>

    <div class="tab-content">
      <div class="tab-pane active" id="primary">
  <% end %>
        <%= text_f(f, :name) %>
        <%= text_f(f, :url, :class => "input-xlarge" ) %>
  <% if show_taxonomy_tabs? %>
      </div>

    <% if show_location_tab? %>
      <div class="tab-pane" id="locations">
        <%= multiple_checkboxes f, :locations, @proxy, Location, { :prefix => "smart_proxy", :label => _("Locations") } %>
      </div>
    <% end %>

    <% if show_organization_tab? %>
      <div class="tab-pane" id="organizations">
        <%= multiple_checkboxes f, :organizations, @proxy, Organization, { :prefix => "smart_proxy", :label => _("Organizations") } %>
      </div>
    <% end %>
    </div>
  <% end %>

  <%= submit_or_cancel f %>
<% end %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
foreman_discovery-1.0.0 test/foreman_app/app/views/smart_proxies/_form.html.erb
foreman_discovery-1.0.0.rc4 test/foreman_app/app/views/smart_proxies/_form.html.erb
foreman_discovery-1.0.0.rc3 test/foreman_app/app/views/smart_proxies/_form.html.erb
foreman_discovery-1.0.0.rc2 test/foreman_app/app/views/smart_proxies/_form.html.erb
foreman_discovery-1.0.0.rc1 test/foreman_app/app/views/smart_proxies/_form.html.erb