Sha256: 4752fcfa207976420c1573ce69bab65e95c03c68505e3a03d31bc587dd7993bf
Contents?: true
Size: 852 Bytes
Versions: 9
Compression:
Stored size: 852 Bytes
Contents
<table class="table table-bordered table-striped ellipsis"> <tr> <th><%= _('Host') %></th> <th><%= _("Date") %></th> <th><%= _("Passed") %></th> <th><%= _("Failed") %></th> <th><%= _("Other") %></th> <th></th> </tr> <% for arf_report in @policy.arf_reports.latest %> <tr> <td><%= name_column(arf_report.host) %></td> <td><%= _("%s ago") % time_ago_in_words(arf_report.date) %></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_scaptimony_arf_report_path(:id => arf_report.id)) ) %> </td> </tr> <% end %> </table>
Version data entries
9 entries across 9 versions & 1 rubygems