Sha256: dfe455a05b88568e6929b593beace9722a03908ac4e3c27378a7999fcf244f9f
Contents?: true
Size: 855 Bytes
Versions: 22
Compression:
Stored size: 855 Bytes
Contents
<% if @auto_refresh %> <meta http-equiv="refresh" content="<%= @auto_refresh %>" > <% end %> <% page_title "#{@adjective.capitalize} Entities" %> <div class="page-header"> <h2><%= h @adjective.capitalize %> Entities</h2> </div> <p><%= h @count_failing_entities %> failing out of <%= h @count_current_entities %></p> <% if @entities.length > 0 %> <table class="table table-bordered table-hover table-condensed tablesorter"> <thead> <tr> <th data-placeholder="e.g. app[1-3]*">Entity</th> </tr> </thead> <tbody> <% @entities.sort.each do |entity| %> <tr> <td><a href="<%= @base_url %>entity/<%= CGI.escape(entity) %>"><%= h entity %></a> </td> </tr> <% end %> </tbody> </table> <% else %> <p>No check output has been processed yet, so there are no entities we can show you here.</p> <% end %>
Version data entries
22 entries across 22 versions & 1 rubygems