Sha256: fb4d271b31c6214f49a8a0b8f09960108741ea95d412cfb0c9c7f032f333f531
Contents?: true
Size: 1.04 KB
Versions: 12
Compression:
Stored size: 1.04 KB
Contents
header.row .span5 h3 == t('CurrentMessagesInQueue', :queue => @name) .span4 == slim :_paging, :locals => { :url => "#{root_path}queues/#{@name}" } table class="queue table table-hover table-bordered table-striped" thead th = t('Class') th = t('Arguments') th - @messages.each_with_index do |msg, index| tr td= msg['class'] 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-mini" = t('ShowAll') .toggle[id="worker_#{index}" style="display: none;"]= msg['args'] - else = msg['args'] td form action="#{root_path}queues/#{@name}/delete" method="post" input name="key_val" value="#{Sidekiq.dump_json(msg)}" type="hidden" input.btn.btn-danger.btn-mini type="submit" name="delete" value="#{t('Delete')}" data-confirm="#{t('AreYouSure')}" == slim :_paging, :locals => { :url => "#{root_path}queues/#{@name}" }
Version data entries
12 entries across 12 versions & 2 rubygems