mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
20 lines
469 B
Text
20 lines
469 B
Text
|
h1 Queues
|
||
|
|
||
|
- if @queues.size > 0
|
||
|
table class="table table-striped table-bordered"
|
||
|
tr
|
||
|
th Queue
|
||
|
th Size
|
||
|
th
|
||
|
- queues.each do |(queue, size)|
|
||
|
tr
|
||
|
td
|
||
|
a href="#{root_path}queues/#{queue}" #{queue}
|
||
|
td= size
|
||
|
td
|
||
|
form action="#{root_path}queues/#{queue}" method="post"
|
||
|
input.btn.btn-danger type="submit" name="delete" value="Delete"
|
||
|
- else
|
||
|
p No queues found.
|
||
|
a href="#{root_path}" Back
|