Sha256: 6963f37ba2b2acc6b2ce61666ddd9b76d45dd6441b4ca7611cf37ee0f4739b27
Contents?: true
Size: 1.48 KB
Versions: 14
Compression:
Stored size: 1.48 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='key[]' value='#{job_params(msg, score)}' td a href="#{root_path}retries/#{job_params(msg, 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-primary.btn-small.pull-left type="submit" name="retry" value="Retry Now" input.btn.btn-danger.btn-small.pull-left type="submit" name="delete" value="Delete" form action="#{root_path}retries/all/delete" method="post" input.btn.btn-danger.btn-small.pull-right type="submit" name="delete" value="Delete All" data-confirm="Are you sure?" form action="#{root_path}retries/all/retry" method="post" input.btn.btn-danger.btn-small.pull-right type="submit" name="retry" value="Retry All" data-confirm="Are you sure?" - else .alert.alert-success No retries were found
Version data entries
14 entries across 14 versions & 1 rubygems