Sha256: 43dfa27f5c613215a6663861cea4ccd2a03729504309156767e27c6908a0fd53

Contents?: true

Size: 714 Bytes

Versions: 1

Compression:

Stored size: 714 Bytes

Contents

<table class="workers table table-hover table-bordered table-striped table-white">
  <thead>
    <th><%= t('Worker') %></th>
    <th><%= t('Queue') %></th>
    <th><%= t('Class') %></th>
    <th><%= t('Arguments') %></th>
    <th><%= t('Started') %></th>
  </thead>
  <% workers.each_with_index do |(worker, msg, run_at), index| %>
    <tr>
      <td><%= worker %></td>
      <td>
        <a href="<%= root_path %>queues/<%= msg['queue'] %>"><%= msg['queue'] %></a>
      </td>
      <td><%= msg['payload']['class'] %></td>
      <td>
        <div class="args"><%= display_args(msg['payload']['args']) %></div>
      </td>
      <td><%= relative_time(Time.at(msg['run_at'])) %></td>
    </tr>
  <% end %>
</table>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sidekiq-2.17.8 web/views/_workers.erb