X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b789ede3e8646a7b8a186905e7c0ff37f6fd1072..d2f68bd1e108c3f2dda2322c427050d019b17e04:/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 fd97295956..aa1ffda017 100644 --- a/apps/workbench/app/views/application/404.html.erb +++ b/apps/workbench/app/views/application/404.html.erb @@ -4,19 +4,33 @@ 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 <%= req_item %> was not found. +

The <%= req_item %> was not found.

-<% if class_name %> -Perhaps you'd like to -<%= link_to("browse all #{class_name_h.pluralize}", action: :index, controller: class_name.tableize) %>? -<% end %> +<% if !current_user %> + +

+ (I notice you are not logged in. If you're looking for a private + page, you'll need to <%=link_to 'log in', arvados_api_client.arvados_login_url(return_to: strip_token_from_path(request.url))%> first.) +

+ +<% elsif class_name %> -

+

+ Perhaps you'd like to <%= 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'} %>