Sha256: 479165e449d7e8550e4d46818b20c43e9ce6a730741626783783572283b3559d
Contents?: true
Size: 764 Bytes
Versions: 15
Compression:
Stored size: 764 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> </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
15 entries across 15 versions & 1 rubygems