Sha256: ec97d7448f1b6be14c49c6865f74a6bf883a4b4f91df455b23d7ffd45d1849b5
Contents?: true
Size: 802 Bytes
Versions: 13
Compression:
Stored size: 802 Bytes
Contents
<% timestamp = params[:timestamp].to_i %> <h1>Delayed jobs scheduled for <%= format_time(Time.at(timestamp)) %></h1> <p class='sub'>Showing <%= start = params[:start].to_i %> to <%= start + 20 %> of <b><%=size = resque.delayed_timestamp_size(timestamp)%></b> jobs</p> <table class='jobs'> <tr> <th>Class</th> <th>Args</th> </tr> <% jobs = resque.delayed_timestamp_peek(timestamp, start, 20) %> <% jobs.each do |job| %> <tr> <td class='class'><%= job['class'] %></td> <td class='args'><%=h show_job_arguments(job['args']) %></td> </tr> <% end %> <% if jobs.empty? %> <tr> <td class='no-data' colspan='2'>There are no pending jobs scheduled for this time.</td> </tr> <% end %> </table> <%= partial :next_more, :start => start, :size => size %>
Version data entries
13 entries across 13 versions & 4 rubygems