Pending
<% if @jobs.any? %>
<% end %>
The list below contains jobs currently being processed.
<%= "Showing #{start} to #{start + per_page} of #{@all_jobs.count} pending jobs." %>
<% @jobs.each do |job| %>
<%= partial :job, {:job => job} %>
<% end %>
<%= partial :next_more, :start => start, :total_size => @all_jobs.count, :per_page => per_page %>