X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/55aafbb07904ca24390dd47ea960eae7cb2b909a..656176226eeb75d24c17de792cc090e4862c46f5:/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 e02d0b3bd7..2d9b5cf2c6 100644 --- a/apps/workbench/app/views/application/404.html.erb +++ b/apps/workbench/app/views/application/404.html.erb @@ -4,10 +4,11 @@ SPDX-License-Identifier: AGPL-3.0 %> <% if (controller.andand.action_name == 'show') and params[:uuid] + check_trash = controller.model_class.include_trash(true).where(uuid: 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("")], "") + raw(""), params[:uuid], raw("")], "") req_item_plain_text = safe_join([class_name_h, " with UUID ", params[:uuid]]) else req_item = "page you requested" @@ -15,6 +16,36 @@ SPDX-License-Identifier: AGPL-3.0 %> end %> + <% if check_trash.andand.any? %> +

Trashed

+ +

The <%= req_item %> is in the trash. + + <% object = check_trash.first %> + + <% if object.is_trashed + untrash_object = object + else + end %> + + <% if untrash_object.editable? %> + <% msg = "Untrash '" + if !untrash_object.name.blank? then untrash_object.name else untrash_object.uuid end + "'?" %> + <%= link_to({action: 'untrash_items', selection: [untrash_object.uuid], controller: :trash_items}, remote: true, method: :post, + title: "Untrash", style: 'cursor: pointer;') do %> + + <% end %> + + <%= form_tag url_for({action: 'untrash_items', controller: :trash_items}), {method: :post} %> + <%= hidden_field_tag :selection, [untrash_object.uuid] %> + + <% end %> + <% else %> + <% %> + <% end %> +

+ + <% else %> +

Not Found

The <%= req_item %> was not found.

@@ -39,5 +70,7 @@ SPDX-License-Identifier: AGPL-3.0 %> <% end %> +<% end %> + <% error_message = "The #{req_item_plain_text} was not found." %> <%= render :partial => "report_error", :locals => {error_message: error_message, error_type: '404'} %>