Merge branch '2769-keep-delete-request'
[arvados.git] / apps / workbench / app / views / application / 404.html.erb
1 <%
2    if (controller.andand.action_name == 'show') and params[:uuid]
3      class_name = controller.model_class.to_s.underscore
4      class_name_h = class_name.humanize(capitalize: false)
5      req_item = safe_join([class_name_h, " with UUID ",
6                            raw("<code>"), params[:uuid], raw("</code>")], "")
7    else
8      req_item = "page you requested"
9    end
10 %>
11
12 <h2>Not Found</h2>
13
14 <p>The <%= req_item %> was not found.
15
16 <% if class_name %>
17 Perhaps you'd like to
18 <%= link_to("browse all #{class_name_h.pluralize}", action: :index, controller: class_name.tableize) %>?
19 <% end %>
20
21 </p>
22