Sha256: a95aedc80f2a69065be4016a726b2a454931da392c78f6bf172a55e2bb6a0bc9
Contents?: true
Size: 841 Bytes
Versions: 5
Compression:
Stored size: 841 Bytes
Contents
<header class="row"> <div class="col-sm-12"> <h3><%= t("Recovered Jobs") %></h3> </div> </header> <div class="table_container"> <table class="recovered table table-hover table-bordered table-striped table-white"> <thead> <th><%= t("Queue") %></th> <th><%= t("Count") %></th> </thead> <% @queues.each do |key, count| %> <tr> <td><%= h key %> </td> <td><%= h count %> </td> </tr> <% end %> </table> </div> <div class="table_container"> <table class="recovered table table-hover table-bordered table-striped table-white"> <thead> <th><%= t("Job Name") %></th> <th><%= t("Count") %></th> </thead> <% @jobs.each do |key, count| %> <tr> <td><%= h key %> </td> <td><%= h count %> </td> </tr> <% end %> </table> </div>
Version data entries
5 entries across 5 versions & 1 rubygems