1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/web/views/queue.slim

16 lines
366 B
Text
Raw Normal View History

header
2012-07-17 22:14:15 -07:00
h1 Current messages in #{@name}
== slim :_paging, :locals => { :url => "#{root_path}queues/#{@name}" }
table class="table table-striped table-bordered"
tr
th Class
th Arguments
- @messages.each do |msg|
tr
td= msg['class']
td= msg['args'].inspect[0..100]
2012-07-17 22:14:15 -07:00
== slim :_paging, :locals => { :url => "#{root_path}queues/#{@name}" }