% th_style = "text-align: left; border-collapse: collapse; background: #f5f5f5; background: linear-gradient(#f5f5f5, #e8e8e8); padding: 4px; border: 1px solid #cccccc;" %>
<% td_style = "text-align: left; border-collapse: collapse; background-color: #FFFFFF; padding: 4px; border: 1px solid #cccccc;" %>
<%= _('Hostname') %>
|
<%= _('Passed') %>
|
<%= _('Failed') %>
|
<%= _('Other') %>
|
<%= _('Changed?') %>
|
<% hosts.each do |host| %>
<% last_report = host.reports_for_policy(policy, 1).first %>
<%= render "host_mailer/link_to_host", :host => host %>
<% if last_report %>
<%= last_report.passed %>
|
<%= last_report.failed %>
|
<%= last_report.othered %>
|
<%= host.scap_status_changed?(policy) ? _('Yes') : _('No') %>
|
<% else %>
<%= _('No ARF reports for this policy') %>
|
<% end %>
<% end %>