mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
26 lines
748 B
Text
26 lines
748 B
Text
![]() |
h1 Scheduled Jobs
|
||
|
|
||
|
- if @scheduled.size > 0
|
||
|
form action="#{root_path}scheduled" method="post"
|
||
|
table class="table table-striped table-bordered"
|
||
|
tr
|
||
|
th
|
||
|
input type="checkbox" class="check_all"
|
||
|
th When
|
||
|
th Queue
|
||
|
th Worker
|
||
|
th Args
|
||
|
- @scheduled.each do |(msg, score)|
|
||
|
tr
|
||
|
td
|
||
|
input type='checkbox' name='score[]' value='#{score}'
|
||
|
td== relative_time(Time.at(score))
|
||
|
td
|
||
|
a href="#{root_path}queues/#{msg['queue']}" #{msg['queue']}
|
||
|
td= msg['class']
|
||
|
td= display_args(msg['args'])
|
||
|
input.btn.btn-danger type="submit" name="delete" value="Delete"
|
||
|
- else
|
||
|
p No scheduled jobs found.
|
||
|
a href="#{root_path}" Back
|