Sha256: f7a1a6c459abdafee7d66ed4eb28e57e92525a828de04a25a15f7a401ccf0134
Contents?: true
Size: 799 Bytes
Versions: 27
Compression:
Stored size: 799 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'><%= job['args'].inspect.html_safe %></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
27 entries across 27 versions & 2 rubygems