aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware/templates/rescues/routing_error.erb
blob: ca85e6d048f769e98378e3a04e0261d0564717cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<header>
  <h1>Routing Error</h1>
</header>
<div id="container">
  <h2><%=h @exception.message %></h2>
  <% unless @exception.failures.empty? %>
    <p>
      <h2>Failure reasons:</h2>
      <ol>
      <% @exception.failures.each do |route, reason| %>
        <li><code><%=h route.inspect.gsub('\\', '') %></code> failed because <%=h reason.downcase %></li>
      <% end %>
      </ol>
    </p>
  <% end %>
  <%= render template: "rescues/_trace" %>

  <h2>
    Routes
  </h2>

  <p>
    Routes match in priority from top to bottom
  </p>

<%= render layout: "routes/route_wrapper" do %>
  <%= render partial: "routes/route", collection: @routes %>
<% end %>