X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/8010ff47f31c6cb38a21cf72de6b0ab8def81d17..41c7f2010ebdbb76fada25a21f184e2d1f4049b3:/apps/workbench/app/views/application/404.html.erb diff --git a/apps/workbench/app/views/application/404.html.erb b/apps/workbench/app/views/application/404.html.erb index c1f48bd851..8a0482274a 100644 --- a/apps/workbench/app/views/application/404.html.erb +++ b/apps/workbench/app/views/application/404.html.erb @@ -1,12 +1,26 @@ +<% + if (controller.andand.action_name == 'show') and params[:uuid] + class_name = controller.model_class.to_s.underscore + class_name_h = class_name.humanize(capitalize: false) + req_item = safe_join([class_name_h, " with UUID ", + raw(""), params[:uuid], raw("")], "") + req_item_plain_text = safe_join([class_name_h, " with UUID ", params[:uuid]]) + else + req_item = "page you requested" + req_item_plain_text = "page you requested" + end +%> +

Not Found

-

The item you requested was not found. +

The <%= req_item %> was not found. -<% if controller.andand.action_name == 'show' %> +<% if class_name %> Perhaps you'd like to -<%= link_to("browse all #{controller.model_class.to_s.underscore.pluralize.humanize(capitalize: false)}", - action: :index) %>? +<%= link_to("browse all #{class_name_h.pluralize}", action: :index, controller: class_name.tableize) %>? <% end %>

+<% error_message = "The #{req_item_plain_text} was not found." %> +<%= render :partial => "report_error", :locals => {error_message: error_message, error_type: '404'} %>