Sha256: cc14242891cffbcf4a06b32869909093b9c5ed622cad54f3a475b5bd7a84dd2c
Contents?: true
Size: 1.14 KB
Versions: 1
Compression:
Stored size: 1.14 KB
Contents
<header class="row"> <div class="span5"> <h3>Recurring Jobs</h3> </div> </header> <% if @schedules.length > 0 %> <table class="table table-striped table-bordered table-white" style="width: 100%; margin: 0; table-layout:fixed;"> thead <thead> <th style="width: 50%">Worker</th> <th style="width: 20%">Queue</th> <th style="width: 20%">Next Run</th> <th style="width: 10%">Actions</th> </thead> <% @schedules.each do |worker, schedule| %> <tr> <td> <a href="<%= "#{root_path}sidetiq/#{worker.name}" %>"><%= worker.name %></a> <td><%= worker.get_sidekiq_options["queue"] %></td> <td> <%= relative_time(schedule.next_occurrence(@time)) %> </td> <td> <form action="<%= "#{root_path}sidetiq/#{worker.name}/trigger" %>" method="post"> <input class="btn btn-danger btn-small" type="submit" name="trigger" value="Trigger" data-confirm="Are you sure you want to trigger this job?" /> </form> </td> </tr> <% end %> </table> <% else %> <div class="alert alert-success">No recurring jobs found.</div> <% end %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sidetiq-0.3.7 | lib/sidetiq/views/sidetiq.erb |