KATELLO <%= _("Host Advisory").upcase %>
|
<% @content_hosts.group_by(&:organization).each do |org, hosts| %>
<%= org %>
<%= _("The following hosts have errata that apply to them: ") %>
<%= _("Host") %> |
<%= _("Security") %> |
<%= _("Bugfix") %> |
<%= _("Enhancement") %> |
<% hosts.each do |host| %>
<%= link_to host, content_host_errata_path(host) %> |
<%= errata_count(host, :security) %> |
<%= errata_count(host, :bugfix) %> |
<%= errata_count(host, :enhancement) %> |
<% end -%>
<% end -%>
|
|
|
|