Sha256: 6e98a5b58c00b23210a032507c49026dbc16e2be3b13fad455d03a1e9ebc2f8c

Contents?: true

Size: 875 Bytes

Versions: 4

Compression:

Stored size: 875 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>
              <a href="<%= link_to "jobs/#{job.id}" %>"><%= relative_time job.run_at %></a>
            </td>
            <td><%= h job.humanized_job_class %></td>
            <td><%= job.queue %></td>
            <td><pre><%= h format_args(job) %></pre></td>
          </tr>
        <% end %>
      </tbody>
    </table>
  </div>
</div>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
que-web-0.10.0 web/views/running.erb
que-web-0.9.4 web/views/running.erb
que-web-0.9.3 web/views/running.erb
que-web-0.9.2 web/views/running.erb