Project

General

Profile

Download (1.97 KB) Statistics
| Branch: | Tag: | Revision:
<table class="table table-bordered table-striped table-fixed">
<thead>
<tr>
<% unless params[:host_id] %>
<th><%= sort :host, :as => _("Host") %></th>
<% end %>
<th><%= sort :reported, :as => _("Last report") %></th>
<th class="col-md-1"><%= sort :applied, :as => _("Applied") %></th>
<th class="col-md-1"><%= sort :restarted, :as => _("Restarted") %></th>
<th class="col-md-1"><%= sort :failed, :as => _("Failed") %></th>
<th class="col-md-1"><%= sort :failed_restarts, :as => _("Restart<br>Failures").html_safe %></th>
<th class="col-md-1"><%= sort :skipped, :as => _("Skipped") %></th>
<th class="col-md-1"><%= sort :pending, :as => _("Pending") %></th>
<th class="col-md-1"><%= _('Actions') %></th>
</tr>
</thead>
<tbody>
<% for report in @config_reports %>
<tr>
<% if params[:host_id].nil? %>
<% if report.host.nil? %>
<td></td>
<% else %>
<td class="ellipsis"><%= link_to report.host, host_config_reports_path(report.host) %></td>
<% end %>
<% end %>
<td><%= reported_at_column(report) %></td>
<td><%= report_event_column(report.applied, "label-info") %></td>
<td><%= report_event_column(report.restarted, "label-info") %></td>
<td><%= report_event_column(report.failed, "label-danger") %></td>
<td><%= report_event_column(report.failed_restarts, "label-warning") %></td>
<td><%= report_event_column(report.skipped, "label-info") %></td>
<td><%= report_event_column(report.pending, "label-info") %></td>
<td>
<%= action_buttons(display_delete_if_authorized hash_for_config_report_path(:id => report).merge(:auth_object => report, :authorizer => authorizer),
:confirm => _("Delete report for %s?") % report.host.try(:name)) %>
</td>
</tr>
<% end %>
</tbody>
</table>
<%= will_paginate_with_info @config_reports %>
(1-1/6)