<h1>Schedule</h1> <p class='intro'> The list below contains all scheduled jobs. Click "Queue now" to queue a job immediately. <br/> Server local time: <%= Time.now %> <br/> Server Environment: <%= Resque::Scheduler.env %> <br/> Current master: <%= Resque.redis.get(Resque::Scheduler.master_lock.key) %> </p> <p class='intro'> The highlighted jobs are skipped for current environment. </p> <div style="overflow-y: auto; width:100%; padding: 0px 5px;"> <table> <tr> <th>Index</th> <% 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> <% Resque.schedule.keys.sort.each_with_index do |name, index| %> <% config = Resque.schedule[name] %> <tr style="<%= scheduled_in_this_env?(name) ? '' : 'color: #9F6000;background: #FEEFB3;' %>"> <td style="padding-left: 15px;"><%= index + 1 %>.</td> <% if Resque::Scheduler.dynamic %> <td style="padding-top: 12px; padding-bottom: 2px; width: 10px"> <form action="<%= u "/schedule" %>" method="post" style="margin-left: 0"> <input type="hidden" name="job_name" value="<%= h name %>"> <input type="hidden" name="_method" value="delete"> <input type="submit" value="Delete"> </form> </td> <% end %> <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 show_job_arguments(config['args']) %></td> <td><%= h Resque.get_last_enqueued_at(name) || 'Never' %></td> </tr> <% end %> </table> </div>