Sha256: cf0940be076000a88ce6c8e4b9f6ed1fc5a506b97e7c70e50093fe078d3a607d

Contents?: true

Size: 650 Bytes

Versions: 3

Compression:

Stored size: 650 Bytes

Contents

<h1>Pending</h1>
<% if @jobs.any? %>
  <% if @allow_requeue_pending %>
    <form action="<%= u('requeue/pending') %>" method="POST">
      <%= csrf_token_tag %>
      <input type="submit" value="Enqueue All Immediately"></input>
    </form>
  <% end %>
<% 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

3 entries across 3 versions & 1 rubygems

Version Path
delayed_job_web-1.4.4 lib/delayed_job_web/application/views/pending.erb
delayed_job_web-1.4.3 lib/delayed_job_web/application/views/pending.erb
delayed_job_web-1.4.2 lib/delayed_job_web/application/views/pending.erb