X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a15dde47e5ab8a562a03f04d65a7c2bc9369a4ff..0eb72b526bf8bbb011551ecf019f604e17a534f1:/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 ae7dc223b7..e02d0b3bd7 100644 --- a/apps/workbench/app/views/application/404.html.erb +++ b/apps/workbench/app/views/application/404.html.erb @@ -1,3 +1,7 @@ +<%# Copyright (C) The Arvados Authors. All rights reserved. + +SPDX-License-Identifier: AGPL-3.0 %> + <% if (controller.andand.action_name == 'show') and params[:uuid] class_name = controller.model_class.to_s.underscore @@ -7,26 +11,33 @@ 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 %> -

+

+ <%= link_to(arvados_api_client.arvados_login_url(return_to: strip_token_from_path(request.url)), + {class: "btn btn-primary report-issue-modal-window"}) do %> + Log in + <% end %> + to view private data. +

+ +<% elsif class_name %> + +

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

-

-
-<% error_message = "The #{req_item_plain_text} was not found." %> -Would you like to report this problem? -<%= link_to report_issue_popup_path(popup_type: 'report', current_location: request.fullpath, action_method: 'post', error_message: error_message), - {class: 'btn btn-primary report-issue-modal-window', 'data-toggle' => "modal", 'data-target' => '#report-issue-modal-window', :remote => true, return_to: request.url} do %> - Report problem <% end %> -

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