Sha256: 51fe4b8ba2947df73c76f0452aafbd98bfa7635e75d78293a53e95e952a72ee7

Contents?: true

Size: 596 Bytes

Versions: 2

Compression:

Stored size: 596 Bytes

Contents

<h1>Pending</h1>
<% if @jobs.any? %>
  <form action="<%= u('requeue/pending') %>" method="POST">
    <%= csrf_token_tag %>
    <input type="submit" value="Enqueue All Immediately"></input>
  </form>
<% end %>
<p class="sub">
  The list below contains jobs currently being processed.
</p>
<p class="sub">
  <%= "Showing #{start} to #{start + per_page} of #{@all_jobs.count} pending jobs." %>
</p>
<ul class="job">
  <% @jobs.each do |job| %>
    <%= partial :job, {:job => job} %>
  <% end %>
</ul>
<%= partial :next_more, :start => start, :total_size => @all_jobs.count, :per_page => per_page %>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
delayed_job_web-1.3 lib/delayed_job_web/application/views/pending.erb
delayed_job_web-1.2.10 lib/delayed_job_web/application/views/pending.erb