Sha256: 1636d7c20d7c8a3a3f6abaf4a6998b5531feae95655abdfe6d01dfab68c60d3d
Contents?: true
Size: 1.77 KB
Versions: 13
Compression:
Stored size: 1.77 KB
Contents
<header class="row"> <div class="col-sm-5"> <h3> <%= t('CurrentMessagesInQueue', :queue => h(@name)) %> <% if @queue.paused? %> <span class="label label-danger"><%= t('Paused') %></span> <% end %> <span class="badge badge-secondary"><%= number_with_delimiter(@total_size) %></span> </h3> </div> <div class="col-sm-4 pull-right flip"> <%= erb :_paging, locals: { url: "#{root_path}queues/#{CGI.escape(@name)}" } %> </div> </header> <div class="table_container"> <table class="queue table table-hover table-bordered table-striped"> <thead> <th><%= t('Job') %></th> <th><%= t('Arguments') %></th> <th></th> </thead> <% @messages.each_with_index do |msg, index| %> <tr> <td><%= h(msg.display_class) %></td> <td> <% a = msg.display_args %> <% if a.inspect.size > 100 %> <span class="worker_<%= index %>"><%= h(a.inspect[0..100]) + "... " %></span> <button data-toggle="collapse" data-target=".worker_<%= index %>" class="btn btn-default btn-xs"><%= t('ShowAll') %></button> <div class="toggle worker_<%= index %>"><%= display_args(a) %></div> <% else %> <%= display_args(msg.display_args) %> <% end %> </td> <td> <form action="<%= root_path %>queues/<%= CGI.escape(@name) %>/delete" method="post"> <%= csrf_tag %> <input name="key_val" value="<%= h msg.value %>" 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> </div> <%= erb :_paging, locals: { url: "#{root_path}queues/#{@name}" } %>
Version data entries
13 entries across 13 versions & 2 rubygems