app/views/resque_web/plugins/resque_scheduler/schedules/index.html.erb
<h1>Schedule</h1>
<p class='intro'>
The list below contains all scheduled jobs. Click "Queue now" to
queue a job immediately.
Server local time: <%= Time.now %>
Current master: <%= Resque.redis.get(Resque::Scheduler.master_lock.key) %>
</p>
<div style="overflow-y: auto; width:100%; padding: 0px 5px;">
<table class="table table-bordered">
<tr>
<% if Resque::Scheduler.dynamic %>
<th></th>
<% end %>
<th></th>
<th>Name</th>
<th>Description</th>
<th>Interval</th>
<th>Class</th>
<th>Queue</th>
<th>Arguments</th>
<th>Last Enqueued</th>
</tr>
<% @scheduled_jobs.each do |job_name, job_config| %>
<tr class="job" id="job_<%= job_name %>">
<% if Resque::Scheduler.dynamic %>
<td class="delete-job-button-cell" style="padding-top: 12px; padding-bottom: 2px; width: 10px">
<form action="<%= schedule_path %>" method="post" style="margin-left: 0">
<input type="hidden" name="job_name" value="<%= h job_name %>">
<input type="hidden" name="_method" value="delete">
<input type="submit" value="Delete" class="delete-button">
</form>
</td>
<% end %>
<td class="requeue-job-button-cell" style="padding-top: 12px; padding-bottom: 2px; width: 10px">
<form action="<%= requeue_path %>" method="post" style="margin-left: 0">
<input type="hidden" name="job_name" value="<%= h job_name %>">
<input type="submit" value="Queue now" id="requeue_job_<%= job_name %>" class="btn btn-default">
</form>
</td>
<td><%= h job_name %></td>
<td><%= h job_config['description'] %></td>
<td style="white-space:nowrap"><%= h schedule_interval(job_config) %></td>
<td><%= h schedule_class(job_config) %></td>
<td><%= h job_config['queue'] || queue_from_class_name(job_config['class']) %></td>
<td><%= h job_config['args'].inspect %></td>
<td><%= h Resque.get_last_enqueued_at(job_name) || 'Never' %></td>
</tr>
<% end %>
</table>
</div>