4c8fa7635ebd85912f8dd280c861207ac104822e
[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      req_item_plain_text = safe_join([class_name_h, " with UUID ", params[:uuid]])
8    else
9      req_item = "page you requested"
10      req_item_plain_text = "page you requested"
11    end
12 %>
13
14 <h2>Not Found</h2>
15
16 <% if !current_user %>
17 <p>You are not logged into Arvados. Please retry after log in.</p><br/>
18 <% end %>
19
20 <p>The <%= req_item %> was not found.
21
22 <% if class_name %>
23 Perhaps you'd like to
24 <%= link_to("browse all #{class_name_h.pluralize}", action: :index, controller: class_name.tableize) %>?
25 <% end %>
26
27 </p>
28
29 <% error_message = "The #{req_item_plain_text} was not found." %>
30 <%= render :partial => "report_error", :locals => {error_message: error_message, error_type: '404'} %>