Sha256: a9c5a2a0f5540dbc07e307eb31d595620afbf4fbb1faafda9a9e4c1a00729518
Contents?: true
Size: 735 Bytes
Versions: 4
Compression:
Stored size: 735 Bytes
Contents
<div class="row"> <div class="small-12 columns"> <h1><%= @list.total %> Running Job<%= @list.total == 1 ? "" : "s" %></h1> </div> </div> <div class="row"> <div class="small-12 columns"> <table> <thead> <tr> <th>Started</th> <th>Job</th> <th>Queue</th> <th>Args</th> </tr> </thead> <tbody> <% @list.page_jobs.each do |job| %> <tr> <td><%== relative_time job.pg_state_changed_at %></td> <td><%= job.job_class %></td> <td><%= job.queue %></td> <td><pre><%= job.args.map(&:inspect).join(', ') %></pre></td> </tr> <% end %> </tbody> </table> </div> </div>
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
que-web-0.4.0 | web/views/running.erb |
que-web-0.3.2 | web/views/running.erb |
que-web-0.3.1 | web/views/running.erb |
que-web-0.3.0 | web/views/running.erb |