Sha256: 35500bd0ff26261fb86ed7832693b54f87a2563f5ffd68b321165baac87d17e9

Contents?: true

Size: 1.01 KB

Versions: 10

Compression:

Stored size: 1.01 KB

Contents

<table id='report_log' class="<%= table_css_classes %>">
  <thead>
    <tr>
      <th><%= _("Severity") %></th>
      <th><%= _("Message") %></th>
      <th class="col-md-4"><%= _("Resource") %></th>
      <th class="col-md-1"><%= _("Result") %></th>
      <th class="col-md-1"><%= _("Actions") %></th>
    </tr>
  </thead>
  <tbody>
    <% logs.each do |log| %>
      <tr>
        <td><span <%= severity_tag log.message.severity %>><%= h log.message.severity %></span></td>
        <td>
          <%= render :partial => 'detailed_message', :locals => { :message => log.message } %>
        </td>
        <td><%= log.source %></td>
        <td><span <%= result_tag log.result %>><%= h log.result %></span></td>
        <td><%= host_search_by_rule_result_buttons(log.source) %></td>
      </tr>
    <% end %>
    <tr id='ntsh' <%= "style='display: none;'".html_safe if logs.size > 0%>>
      <td colspan="4">
        <div class="alert alert-warning" role="alert"><%= _("Nothing to show") %></div>
      </td>
    </tr>
  </tbody>
</table>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
foreman_openscap-0.12.3 app/views/arf_reports/_output.html.erb
foreman_openscap-0.11.5 app/views/arf_reports/_output.html.erb
foreman_openscap-0.12.2 app/views/arf_reports/_output.html.erb
foreman_openscap-0.12.1 app/views/arf_reports/_output.html.erb
foreman_openscap-0.12.0 app/views/arf_reports/_output.html.erb
foreman_openscap-0.11.4 app/views/arf_reports/_output.html.erb
foreman_openscap-0.11.3 app/views/arf_reports/_output.html.erb
foreman_openscap-0.11.2 app/views/arf_reports/_output.html.erb
foreman_openscap-0.11.1 app/views/arf_reports/_output.html.erb
foreman_openscap-0.11.0 app/views/arf_reports/_output.html.erb