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]])
9 req_item = "page you requested"
10 req_item_plain_text = "page you requested"
16 <p>The <%= req_item %> was not found.</p>
18 <% if !current_user %>
21 (I notice you are not logged in. If you're looking for a private
22 page, you'll need to <%=link_to 'log in', arvados_api_client.arvados_login_url(return_to: strip_token_from_path(request.url))%> first.)
25 <% elsif class_name %>
28 Perhaps you'd like to <%= link_to("browse all
29 #{class_name_h.pluralize}", action: :index, controller:
30 class_name.tableize) %>?
35 <% error_message = "The #{req_item_plain_text} was not found." %>
36 <%= render :partial => "report_error", :locals => {error_message: error_message, error_type: '404'} %>