Sha256: 3cd9a6211f06f223217f8914e18b48621ebaae21f5d2b9524859fdffefdb32c6
Contents?: true
Size: 670 Bytes
Versions: 5
Compression:
Stored size: 670 Bytes
Contents
<h1>Delayed jobs scheduled for <%= format_time(Time.at(@timestamp)) %></h1> <p class='sub'>Showing <%= @start %> to <%= [@size, 20].min %> of <b><%= @size %></b> jobs</p> <table class='jobs table table-bordered'> <tr> <th>Class</th> <th>Args</th> </tr> <% @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> <%= render partial: 'next_more', locals: {:start => @start, :size => @size} %>
Version data entries
5 entries across 5 versions & 1 rubygems