Sha256: 2bd298661f28be3545b93a01b57fed3fd121c6b1cb4b0ea7670d1dd2f8b0e82d

Contents?: true

Size: 604 Bytes

Versions: 2

Compression:

Stored size: 604 Bytes

Contents

%h1 Failed Jobs
- if @jobs.any?
  %form{:method => 'POST', :action => u('failed/clear')}
    %input{:type => 'submit', :value => 'Clear Failed Jobs'}
  %form{:method => 'POST', :action => u('requeue/all')}
    %input{:type => 'submit', :value => 'Retry Failed Jobs'}

%p.sub
  The list below contains all jobs that have a last_error message set.
%p.sub= "Showing #{start} to #{start + per_page} of #{@all_jobs.count} failed jobs."
%ul.failed.job
  - @jobs.each do |job|
    = partial :job, {:job => job}
= partial :next_more, :start => start, :total_size => @all_jobs.count, :per_page => per_page
= poll

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
delayed_job_web-1.0.1 lib/delayed_job_web/application/views/failed.haml
delayed_job_web-1.0.0 lib/delayed_job_web/application/views/failed.haml