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/queues.slim
Brandon Hilkert 1869a29503 * Simplify poller by using query string so it works on all pages
* Minify jquery.timeago
* Consolidate js into one file to minimize requests for page refresh
* Remove bootstrap.js since it doesn't appear to be used
2012-12-04 15:36:51 -05:00

15 lines
No EOL
517 B
Text
Executable file

h3 Queues
table class="queues table table-hover table-bordered table-striped table-white"
thead
th Queue
th Size
th Actions
- queues.each do |(queue, size)|
tr
td
a href="#{root_path}queues/#{queue}" #{queue}
td= number_with_delimiter(size)
td width="20%"
form action="#{root_path}queues/#{queue}" method="post"
input.btn.btn-danger.btn-small type="submit" name="delete" value="Delete" data-confirm="Are you sure you want to delete the #{queue} queue?"