Sha256: 931a5f1a10e555b73567ce68fe433b0d36e88025bc220bd079e31dd6b0233690
Contents?: true
Size: 1.79 KB
Versions: 1
Compression:
Stored size: 1.79 KB
Contents
.container-fluid .row .col-md-3.col-md-offset-1 h1 | Last 5 occurrences - @error.error_occurrences.order(created_at: :desc).last(5).each do |occurrence| div = link_to error_path(id: @error.id, occurrence_id: occurrence.id) = time_ago_in_words(occurrence.created_at) + " ago " | to = " " + user_show_string(occurrence.experiencer) h1 | Status = form_for @error do |f| = f.select(:status, Errdo::Error.statuses.keys, {}, class: "form-control errdo-status-select") = f.submit "Update status", class: "btn btn-primary" .col-md-7 h3 Occurrence Time div = @occurrence.created_at h3 Number of times this error occurred = @error.occurrence_count h3 Exception Class div = @error.exception_class_name h3 Exception message div = @error.exception_message h3 Experiencer div - if user_show_path(@occurrence.experiencer) = link_to user_show_string(@occurrence.experiencer), user_show_path(@occurrence.experiencer), class: "errdo" - else = user_show_string(@occurrence.experiencer) h3 Param Values div == @occurrence.param_values h3 Backtrace .errdo-backtrace-box - @error.backtrace.each do |line| div = line h3 IP address div = @occurrence.ip h3 User Agent div = @occurrence.user_agent h3 Referer div = @occurrence.referer || "None" h3 Cookie Values .errdo-backtrace-box = @occurrence.cookie_values h3 Header Values div = @occurrence.header_values h3 HTTP Method div = @error.http_method h3 Requested URL div = @error.url br br br br
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
errdo-0.12.5 | app/views/errdo/errors/show.html.slim |