Sha256: 4db489606555995454d5abd933c7314cc25997b8dd0a0d8299dba9cdaadbc746

Contents?: true

Size: 1.92 KB

Versions: 8

Compression:

Stored size: 1.92 KB

Contents

<header class="row">
  <div class="col-sm-5">
    <h3>
    <%= t('Locks') %>
    </h3>
  </div>
  <form action="<%= root_path %>locks" class="form form-inline" method="get">
    <%= csrf_tag %>
    <input name="filter" class="form-control" type="text" value="<%= @filter %>" />

    <button class="btn btn-default" type="submit">
      <%= t('Filter') %>
    </button>

  </form>

  <% if @locks.any? && @total_size > @count %>
    <div class="col-sm-4">
      <%= erb unique_template(:_paging), locals: { url: "#{root_path}locks" } %>
    </div>
  <% end %>
</header>

<% if @locks.any? %>
  <div class="table_container">
    <table class="table table-striped table-bordered table-hover">
      <thead>
        <tr>
          <th><%= t('Delete') %></th>
          <th><%= t('Digest') %></th>
          <th><%= t('Lock') %></th>
          <th><%= t('Locks') %></th>
          <th><%= t('Since') %></th>
        </tr>
      </thead>
      <% @locks.each do |lock| %>
        <tbody>
          <tr class="lock-row">
            <td>
              <form action="<%= root_path %>locks/<%= lock.key %>/delete" method="get">
                <%= csrf_tag %>
                <input name="lock" value="<%= h lock.key %>" type="hidden" />
                <input class="btn btn-danger btn-xs" type="submit" name="delete" value="<%= t('Delete') %>" data-confirm="<%= t('AreYouSure') %>" />
              </form>
            </td>
            <td><a href="<%= root_path %>locks/<%= lock.key %>"><%= lock.key %></a></td>
            <td><%= lock.info["lock"] %></td>
            <td><%= lock.locked.count %></td>
            <td><%= safe_relative_time(lock.created_at) %></td>
          </tr>
        </tbody>
      <% end %>
    </table>

    <form action="<%= root_path %>locks/delete_all" method="get">
      <input class="btn btn-danger btn-xs" type="submit" name="delete_all" value="<%= t('DeleteAll') %>" data-confirm="<%= t('AreYouSure') %>" />
    </form>
  </div>
<% end %>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
sidekiq-unique-jobs-8.0.7 lib/sidekiq_unique_jobs/web/views/locks.erb
sidekiq-unique-jobs-8.0.6 lib/sidekiq_unique_jobs/web/views/locks.erb
sidekiq-unique-jobs-8.0.5 lib/sidekiq_unique_jobs/web/views/locks.erb
sidekiq-unique-jobs-8.0.4 lib/sidekiq_unique_jobs/web/views/locks.erb
sidekiq-unique-jobs-8.0.3 lib/sidekiq_unique_jobs/web/views/locks.erb
sidekiq-unique-jobs-8.0.2 lib/sidekiq_unique_jobs/web/views/locks.erb
sidekiq-unique-jobs-8.0.1 lib/sidekiq_unique_jobs/web/views/locks.erb
sidekiq-unique-jobs-8.0.0 lib/sidekiq_unique_jobs/web/views/locks.erb