Sha256: 15f31c8703febc9ab62620399f0491899f8f95aa6343600d94f2569979515940

Contents?: true

Size: 899 Bytes

Versions: 4

Compression:

Stored size: 899 Bytes

Contents

<%= javascript 'dashboard', 'foreman_openscap/scap_hosts_show' %>

<% title _("%s compliance reports by policy") % @host.to_label %>
<% @host.policies.each do |policy| %>
  <h2 class="center-block"><%= _('Policy %s') % policy %></h2>
  <div class="row">
    <div class="col-md-4">
      <div class="stats-well">
        <h4 class="header ca"><%= _('%s latest report') % policy.name %></h4>
        <% report = Scaptimony::HostReportDashboard::Data.new(policy.id, @host.asset.id).report %>
        <%= host_policy_breakdown_chart(report, :class => 'statistics-pie small') %>
      </div>
    </div>

    <div class="col-md-8">
      <div class="stats-well">
        <h4 class="ca"><%= _("%s reports over time") % policy %></h4>
        <%= flot_chart('resource_graph', '', '', host_arf_reports_chart(policy.id)) %>
      </div>
    </div>
  </div>
  <hr style="border: 1px solid #eeeeee"/>
<% end %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
foreman_openscap-0.4.3 app/views/scaptimony_hosts/show.html.erb
foreman_openscap-0.4.2 app/views/scaptimony_hosts/show.html.erb
foreman_openscap-0.4.1 app/views/scaptimony_hosts/show.html.erb
foreman_openscap-0.4.0 app/views/scaptimony_hosts/show.html.erb