canvas-lms/app/views/errors/index.html.erb

31 lines
1004 B
Plaintext
Raw Normal View History

<%
content_for :page_title, "Error Reports"
add_crumb "Error Reports"
%>
<% form_for @current_user, :url => '/error_reports', :html => { :method => :get } do |f| %>
Message contains
<input type="text" name="message" value="<%= @message %>" style="width: 250px;"/>
<button type="submit" class="button">Search</button>
<% end %>
<%= will_paginate(@reports) %>
2011-02-01 09:57:29 +08:00
<% @reports.each do |report| %>
<div style="margin-bottom: 20px;">
<h3><%= report.message %></h3>
2011-02-01 09:57:29 +08:00
<div style="border: 1px solid #eee; -moz-border-radius: 5px; padding: 5px 20px;">
<%= report.created_at %><br />
<%= report.url %><br/>
<% if report.user_id %>
<%= link_to report.user.try(:name), user_url(report.user_id) %>
<% end %>
<% (report.data || {}).each do |k,v| %>
<br><%= k %>: <%= v %>
<% end %>
2011-02-01 09:57:29 +08:00
<pre style="font-size: 0.8em; margin-left: 20px; height: 150px; overflow: auto;">
<%= report.backtrace %>
2011-02-01 09:57:29 +08:00
</pre>
</div>
</div>
<% end %>