<%= t('Retries') %>

<% if @retries.size > 0 && @total_size > @count %> <%= erb :_paging, locals: { url: "#{root_path}retries" } %> <% end %> <%= filtering('retries') %>
<% if @retries.size > 0 %>
<%= csrf_tag %>
<% @retries.each do |entry| %> <% end %>
<%= t('NextRetry') %> <%= t('RetryCount') %> <%= t('Queue') %> <%= t('Job') %> <%= t('Arguments') %> <%= t('Error') %>
<%= relative_time(entry.at) %> <%= entry['retry_count'] %> <%= entry.queue %> <%= entry.display_class %> <%= display_tags(entry, "retries") %>
<%= display_args(entry.display_args) %>
<% if (state = @iterable_states[entry.jid]) %>
cursor=<%= h(truncate(state.cursor.inspect, 100)) %>; exec=<%= state.executions %>; rt=<%= number_with_delimiter(state.runtime, precision: 3) %>s
<% end %>
<% else %>
<%= t('NoRetriesFound') %>
<% end %>