Sha256: 1f05eb88b9a3968a371b31df1797474f631bac8811a7a1954c985ed25ef30890

Contents?: true

Size: 1.13 KB

Versions: 1

Compression:

Stored size: 1.13 KB

Contents

<h1>Schedule</h1>

<p class='intro'>
  The list below contains all scheduled jobs.  Click &quot;Queue now&quot; to queue
  a job immediately.
  Server local time: <%= Time.now %>
</p>

<table>
  <tr>
    <th></th>
    <th>Name</th>
    <th>Description</th>
    <th>Interval</th>
    <th>Class</th>
    <th>Queue</th>
    <th>Arguments</th>
  </tr>
  <% Resque.schedule.keys.sort.select { |n| scheduled_in_this_env?(n) }.each do |name| %>
    <% config = Resque.schedule[name] %>
    <tr>
      <td style="padding-top: 12px; padding-bottom: 2px; width: 10px">
        <form action="<%= u "/schedule/requeue" %>" method="post" style="margin-left: 0">
          <input type="hidden" name="job_name" value="<%= h name %>">
          <input type="submit" value="Queue now">
        </form>
      </td>
      <td><%= h name %></td>
      <td><%= h config['description'] %></td>
      <td style="white-space:nowrap"><%= h schedule_interval(config) %></td>
      <td><%= h schedule_class(config) %></td>
      <td><%= h config['queue'] || queue_from_class_name(config['class']) %></td>
      <td><%= h config['args'].inspect %></td>
    </tr>
  <% end %>
</table>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
resque-scheduler-2.5.5 lib/resque_scheduler/server/views/scheduler.erb