Sha256: 3f53e6fae7d1eed77ebbaea46f496d0dc83fbfc22592b3d0427fec5a21922399

Contents?: true

Size: 768 Bytes

Versions: 3

Compression:

Stored size: 768 Bytes

Contents

<div class="row header">
  <div class="col-sm-7">
    <h3><%= t('Jobs') %></h3>
  </div>
</div>

<div class="table_container">
  <table class="table table-hover table-bordered table-striped table-white">
    <thead>
    <tr>
      <th><%= t('Name') %></th>
      <th><%= t('Parameters') %></th>
      <th><%= t('Actions') %></th>
    </tr>
    </thead>
    <tbody>
    <% @jobs.each do |job| %>
      <tr>
        <td width="40%">
          <%= job.name %>
        </td>
        <td width="50%">
          <%= display_params(job.params) %>
        </td>
        <td width="10%">
          <%= link_to("/control/#{job.name}", t('Perform'), class: 'btn btn-danger btn-xs', style: 'color:white;') %>
        </td>
      </tr>
    <% end %>
    </tbody>
  </table>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
sidekiq-control-0.0.12 web/views/index.erb
sidekiq-control-0.0.11 web/views/index.erb
sidekiq-control-0.0.10 web/views/index.erb