Sha256: 39294d245d6c5b029e9e691b8263b8c22ea55ed86d227b2fa52254dbaf5cf8ec
Contents?: true
Size: 848 Bytes
Versions: 31
Compression:
Stored size: 848 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.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
31 entries across 31 versions & 1 rubygems