Sha256: 8565d7fbdb8b1835b4060b9d69159b70c0e757908875130455e5fbb001071f64

Contents?: true

Size: 767 Bytes

Versions: 2

Compression:

Stored size: 767 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-small" type="submit" name="delete" value="<%= t('Delete') %>" data-confirm="<%= t('AreYouSureDeleteQueue', :queue => queue.name) %>" />
        </form>
      </td>
    </tr>
  <% end %>
</table>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sidekiq-2.14.1 web/views/queues.erb
sidekiq-2.14.0 web/views/queues.erb