Sha256: 84e607ad5e6bcf54c6753c32222bdaa0ce742bffd108bb29f19a9b290031b701
Contents?: true
Size: 583 Bytes
Versions: 89
Compression:
Stored size: 583 Bytes
Contents
<div class="col-sm-7"> <div class="stats-well"> <h4><%=_("Backend System Status")%></h4> <table class="table table-striped"> <tr> <th><%= _("Component") %></th> <th><%= _("Status") %></th> <th><%= _("Message") %></th> </tr> <% Katello::Ping.ping[:services].sort.each do |component, status| %> <tr> <td><%= component %></td> <td><%= status[:status].downcase == 'ok' ? _('OK') : _('FAIL') %></td> <td><%= status[:message] %></td> </tr> <% end %> </table> </div> </div>
Version data entries
89 entries across 89 versions & 1 rubygems