Sha256: 01237f77dcd8016a4a7fa60f9cc16ec1042ff0c3594b7fb5263d2cd67099fd64

Contents?: true

Size: 820 Bytes

Versions: 8

Compression:

Stored size: 820 Bytes

Contents

<div class="row">
  <div class="small-12 medium-8 columns">
    <h1><%= @list.total %> Running Job<%= @list.total == 1 ? "" : "s" %></h1>
  </div>
  <div class="small-12 medium-4 columns">
    <%== erb :_search %>
  </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

8 entries across 8 versions & 1 rubygems

Version Path
que-web-0.7.2 web/views/running.erb
que-web-0.7.1 web/views/running.erb
que-web-0.7.0 web/views/running.erb
que-web-0.6.3 web/views/running.erb
que-web-0.6.2 web/views/running.erb
que-web-0.6.1 web/views/running.erb
que-web-0.6.0 web/views/running.erb
que-web-0.5.0 web/views/running.erb