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

Version Path
foreman_openscap-0.12.3 app/views/policy_dashboard/_policy_reports.html.erb
foreman_openscap-0.11.5 app/views/policy_dashboard/_policy_reports.html.erb
foreman_openscap-0.12.2 app/views/policy_dashboard/_policy_reports.html.erb
foreman_openscap-0.12.1 app/views/policy_dashboard/_policy_reports.html.erb
foreman_openscap-0.12.0 app/views/policy_dashboard/_policy_reports.html.erb
foreman_openscap-0.11.4 app/views/policy_dashboard/_policy_reports.html.erb
foreman_openscap-0.11.3 app/views/policy_dashboard/_policy_reports.html.erb
foreman_openscap-0.11.2 app/views/policy_dashboard/_policy_reports.html.erb
foreman_openscap-0.11.1 app/views/policy_dashboard/_policy_reports.html.erb
foreman_openscap-0.11.0 app/views/policy_dashboard/_policy_reports.html.erb
foreman_openscap-0.10.4 app/views/policy_dashboard/_policy_reports.html.erb
foreman_openscap-0.10.3 app/views/policy_dashboard/_policy_reports.html.erb