Sha256: 4a1f0f61b44584c83902f22b5958838fe1a26209dc8d10ccea7cf4f3b31210ac

Contents?: true

Size: 1.1 KB

Versions: 4

Compression:

Stored size: 1.1 KB

Contents

header.row
  .span5
    h3 Retries
  .span4
    - if @retries.size > 0
      == slim :_paging, :locals => { :url => "#{root_path}retries" }

- if @retries.size > 0

  form action="#{root_path}retries" method="post"
    table class="table table-striped table-bordered table-white"
      tr
        th width="20px"
          input type="checkbox" class="check_all"
        th width="25%" Next Retry
        th width="11%" Retry count
        th Queue
        th Worker
        th Args
      - @retries.each do |(msg, score)|
        tr
          td
            input type='checkbox' name='score[]' value='#{score}'
          td
            a href="#{root_path}retries/#{score}"== relative_time(Time.at(score))
          td= msg['retry_count']
          td
            a href="#{root_path}queues/#{msg['queue']}" #{msg['queue']}
          td= msg['class']
          td= display_args(msg['args'])
    input.btn.btn-danger.btn-small.pull-right type="submit" name="delete" value="Delete"
    input.btn.btn-primary.btn-small.pull-right type="submit" name="retry" value="Retry Now" 
- else
  .alert.alert-success No retries were found

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
sidekiq-2.5.3 web/views/retries.slim
sidekiq-2.5.2 web/views/retries.slim
sidekiq-2.5.1 web/views/retries.slim
sidekiq-2.5.0 web/views/retries.slim