Project

General

Profile

Download (2.59 KB) Statistics
| Branch: | Tag: | Revision:
<%= javascript "nfs_visibility" %>
<%= form_for @medium do |f| %>
<%= base_errors_for @medium %>

<% if show_taxonomy_tabs? %>
<ul class="nav nav-tabs" data-tabs="tabs">
<li class="active"><a href="#primary" data-toggle="tab"><%= _("Medium") %></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>
<% end%>

<div class="tab-content">
<div class="tab-pane active" id="primary">
<%= text_f f, :name %>
<%= text_f f, :path, :size => "col-md-8", :help_block => _("The path to the medium, can be a URL or a valid NFS server (exclusive of the architecture).
for example <em>http://mirror.centos.org/centos/$version/os/$arch</em> where <strong>$arch</strong> will be substituted for the host's actual OS architecture and <strong>$version</strong>, <strong>$major</strong> and <strong>$minor</strong> will be substituted for the version of the operating system. Solaris and Debian media may also use <strong>$release</strong>.").html_safe %>
<span id="nfs-section" <%= display?(!@medium.operatingsystems.map(&:require_nfs_access_to_medium).any?) %>>
<%= text_f f, :media_path, :size => "col-md-8", :help_inline => _("The NFS path to the media.") %>
<%= text_f f, :config_path, :size => "col-md-8", :help_inline => _("The NFS path to the jumpstart control files.") %>
<%= text_f f, :image_path, :size => "col-md-8", :help_inline => _("The NFS path to the image directory.") %>
</span>
<%= select_f f, :os_family, Operatingsystem.families_as_collection, :value, :name, { :include_blank => _("Operating System Family"), :label => _("OS Family"), :help_inline => _("The Operating System type") } %>
</div>


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

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

<%= submit_or_cancel f %>

</div>

<% end %>

<script type="text/javascript" charset="utf-8">
nfs_section_visibility([<%= Operatingsystem.all.map(&:require_nfs_access_to_medium).join(", ") %>])
</script>
(1-1/5)