Sha256: da6c507cb5b12779dea6205b4cd5993c8d869c7fc1fd6e5fa00a3667caee6247
Contents?: true
Size: 854 Bytes
Versions: 12
Compression:
Stored size: 854 Bytes
Contents
<table class="<%= table_css_classes('ellipsis') %>"> <tr> <th><%= _('Host') %></th> <th><%= _("Date") %></th> <th><%= _("Passed") %></th> <th><%= _("Failed") %></th> <th><%= _("Other") %></th> <th><%= _('Actions') %></th> </tr> <% for arf_report in @policy.arf_reports.latest %> <tr> <td><%= name_column(arf_report.host) %></td> <td><%= date_time_relative_value(arf_report.reported_at) %></td> <td><%= report_arf_column(arf_report.passed, "label-info") %></th> <td><%= report_arf_column(arf_report.failed, "label-danger") %></th> <td><%= report_arf_column(arf_report.othered, "label-warning") %></th> <td> <%= action_buttons( link_to(_("View Report"), hash_for_arf_report_path(:id => arf_report.id)) ) %> </td> </tr> <% end %> </table>
Version data entries
12 entries across 12 versions & 1 rubygems