Sha256: 394530a1dccee541b963b91257d9e1d3798d2532390ecb794f13aeebc0a7f47d
Contents?: true
Size: 1020 Bytes
Versions: 2
Compression:
Stored size: 1020 Bytes
Contents
<%= erb :_job_info, :locals => {:job => @retry, :type => :retry} %> <h3><%= t('Error') %></h3> <table class="error table table-bordered table-striped"> <tbody> <tr> <th><%= t('ErrorClass') %></th> <td> <code><%= @retry['error_class'] %></code> </td> </tr> <tr> <th><%= t('ErrorMessage') %></th> <td><%= @retry['error_message'] %></td> </tr> <% if !@retry['error_backtrace'].nil? %> <tr> <th><%= t('ErrorBacktrace') %></th> <td> <code><%= @retry['error_backtrace'].join("<br/>") %></code> </td> </tr> <% end %> </tbody> </table> <form class="form-horizontal" action="<%= root_path %>retries/<%= job_params(@retry, @retry.score) %>" method="post"> <a class="btn" href="<%= root_path %>retries"><%= t('GoBack') %></a> <input class="btn btn-primary" type="submit" name="retry" value="<%= t('RetryNow') %>" /> <input class="btn btn-danger" type="submit" name="delete" value="<%= t('Delete') %>" /> </form>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
sidekiq-2.14.1 | web/views/retry.erb |
sidekiq-2.14.0 | web/views/retry.erb |