Sha256: ef3c608d10b5ff6b58bf763c39a41a24733a3fa30c18160b74f45c9ff275fa68
Contents?: true
Size: 882 Bytes
Versions: 19
Compression:
Stored size: 882 Bytes
Contents
<h3><%= t('Queues') %></h3> <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 width="20%"> <form action="<%=root_path %>queues/<%= queue.name %>" method="post"> <input class="btn btn-danger btn-xs" type="submit" name="delete" value="<%= t('Delete') %>" data-confirm="<%= t('AreYouSureDeleteQueue', :queue => queue.name) %>" /> </form> </td> </tr> <% end %> </table>
Version data entries
19 entries across 19 versions & 1 rubygems