Sha256: 401d4a3652f38afd51757f39fdb53027ca9af8ac6b01ac18ed86a4d5b7b59d92

Contents?: true

Size: 1.4 KB

Versions: 4

Compression:

Stored size: 1.4 KB

Contents

<header class="row">
  <div class="col-sm-5">
    <h3>
      <%= t('CurrentMessagesInQueue', :queue => @name) %>
    </h3>
  </div>
  <div class="col-sm-4 pull-right">
    <%= erb :_paging, :locals => { :url => "#{root_path}queues/#{@name}" } %>
  </div>
</header>
<table class="queue table table-hover table-bordered table-striped">
  <thead>
    <th><%= t('Class') %></th>
    <th><%= t('Arguments') %></th>
    <th></th>
  </thead>
  <% @messages.each_with_index do |msg, index| %>
    <tr>
      <td><%= msg['class'] %></td>
      <td>
        <% if msg['args'] and msg['args'].to_s.size > 100 %>
          <%= msg['args'].inspect[0..100] + "... " %>
          <button data-toggle="collapse" data-target="#worker_<%= index %>" class="btn btn-default btn-xs"><%= t('ShowAll') %></button>
          <div class="toggle" id="worker_<%= index %>" style="display: none;"><%= msg['args'] %></div>
        <% else %>
          <%= msg['args'] %>
        <% end %>
      </td>
      <td>
        <form action="<%= root_path %>queues/<%= @name %>/delete" method="post">
          <input name="key_val" value="<%= h Sidekiq.dump_json(msg) %>" type="hidden" />
          <input class="btn btn-danger btn-xs" type="submit" name="delete" value="<%= t('Delete') %>" data-confirm="<%= t('AreYouSure') %>" />
        </form>
      </td>
    </tr>
  <% end %>
</table>
<%= erb :_paging, :locals => { :url => "#{root_path}queues/#{@name}" } %>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
sidekiq-2.16.0 web/views/queue.erb
sidekiq-2.15.2 web/views/queue.erb
sidekiq-2.15.1 web/views/queue.erb
sidekiq-2.15.0 web/views/queue.erb