Sha256: 12b7f2f48110e95ee8fee9284c3344d6782face423c18ba4558a714f2d12fbf3
Contents?: true
Size: 1007 Bytes
Versions: 10
Compression:
Stored size: 1007 Bytes
Contents
<h3><%= t('Queues') %></h3> <div class="table_container"> <table class="queues table table-hover table-bordered table-striped table-white"> <thead> <th><%= t('Queue') %></th> <th><%= t('Size') %></th> <th><%= t('Actions') %></th> </thead> <% @queues.each do |queue| %> <tr> <td> <a href="<%= root_path %>queues/<%= queue.name %>"><%= queue.name %></a> <% if queue.paused? %> <span class="label label-danger"><%= t('Paused') %></span> <% end %> </td> <td><%= number_with_delimiter(queue.size) %> </td> <td class="delete-confirm"> <form action="<%=root_path %>queues/<%= queue.name %>" method="post"> <%= csrf_tag %> <input class="btn btn-danger btn-xs" type="submit" name="delete" value="<%= t('Delete') %>" data-confirm="<%= t('AreYouSureDeleteQueue', :queue => h(queue.name)) %>" /> </form> </td> </tr> <% end %> </table> </div>
Version data entries
10 entries across 10 versions & 1 rubygems