Sha256: daa3705dc88cbd417865d3b374505d2f16ec8767b7349bbe663d0c9a01ff2235
Contents?: true
Size: 790 Bytes
Versions: 77
Compression:
Stored size: 790 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 job['args'].inspect %></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
77 entries across 77 versions & 10 rubygems