1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add new style to Routing Error page

This commit is contained in:
Guillermo Iguaran 2012-09-07 23:22:17 -05:00
parent 048cd254e6
commit 78a0d86b0a

View file

@ -1,6 +1,9 @@
<h1>Routing Error</h1>
<p><pre><%=h @exception.message %></pre></p>
<% unless @exception.failures.empty? %>
<header>
<h1>Routing Error</h1>
</header>
<div id="container">
<h2><%=h @exception.message %></h2>
<% unless @exception.failures.empty? %>
<p>
<h2>Failure reasons:</h2>
<ol>
@ -9,16 +12,16 @@
<% end %>
</ol>
</p>
<% end %>
<%= render template: "rescues/_trace" %>
<% end %>
<%= render template: "rescues/_trace" %>
<h2>
<h2>
Routes
</h2>
</h2>
<p>
<p>
Routes match in priority from top to bottom
</p>
</p>
<%= render layout: "routes/route_wrapper" do %>
<%= render partial: "routes/route", collection: @routes %>