KATELLO PROMOTION SUMMARY
<%= (_("The promotion of %{content_view} to %{environment} has completed. %{count} needed errata are installable on your hosts.") %
{:content_view => link_to(@content_view.name, content_view_path(@content_view)),
:environment => @environment.name,
:count => link_to(@errata.count, content_view_environment_errata_path(@content_view, @environment))}).html_safe %>
|
<%= _("Unapplied Errata") %>
<% if @errata.blank? %>
<%= _("None") %>
<% else %>
<% ['security', 'bugfix', 'enhancement'].each do |errata_type| %>
<% next if @errata[errata_type].nil? %>
<%= _("%s Errata") % errata_type.titleize %>
<% @errata[errata_type].each do |erratum| %>
<%= render :partial => "erratum", :locals => {:erratum => erratum} %>
<% end -%>
<% end -%>
<% end -%>
|
|
|
|