<%= t('Retries') %>

<% if @retries.size > 0 %> <%= erb :_paging, :locals => { :url => "#{root_path}retries" } %> <% end %>
<% if @retries.size > 0 %>
<% @retries.each do |msg, score| %> <% end %>
<%= t('NextRetry') %> <%= t('RetryCount') %> <%= t('Queue') %> <%= t('Worker') %> <%= t('Arguments') %> <%= t('Error') %>
<%= relative_time(Time.at(score)) %> <%= msg['retry_count'] %> <%= msg['queue'] %> <%= msg['class'] %>
<%= display_args(msg['args']) %>
<%= truncate("#{msg['error_class']}: #{msg['error_message']}", 200) %>
<% else %>
<%= t('NoRetriesFound') %>
<% end %>