beast rev 2066
[beast-modified.git] / vendor / plugins / exception_logger / views / logged_exceptions / _show.rhtml
blobd0c8da1e0458b45e3047fe3c8842cc8fe1be681c
1 <div class="tools">
2 <%= link_to_remote 'Delete', {:url => { :action => 'destroy', :id => @exc }} , :class => "util" %>
3 <span class="pipe">|</span>
4 <%= link_to_function "Close", "$('showpage').style.display='none';", :class => "util" %>
5         
6 </div>
8 <div class="date">
9         <%= @exc.created_at.strftime("%A, %b %d, %Y at %l:%M %p") %>
10 </div>
11 <h1>
12 <%= @exc.exception_class %> in <%= @exc.controller_name.camelcase %>/<%= @exc.action_name %>
13 </h1>
15 <h2>Request</h2>
17 <%= textilize(@exc.request) %>
19 <h2>Backtrace</h2>
21 <%= simple_format @exc.message %>
23 <div id="backtrace">
24 <%=h(@exc.backtrace).gsub(/\n/,"<br />") %>
25 </div>
27 <h2>Environment</h2>
29 <%= textilize(@exc.environment) %>