2411: Add copyright notices to everything.
[arvados.git] / apps / workbench / app / views / trash_items / _untrash_item.html.erb
index a40a4be7e1e74a6b6df96123b14eff54cae8ab69..901d396fcb81c14a41bce739dc4c88d90f22cd2a 100644 (file)
@@ -1,5 +1,11 @@
+<%# Copyright (C) The Arvados Authors. All rights reserved.
+
+SPDX-License-Identifier: AGPL-3.0 %>
+
 <% if object.editable? %>
-  <%= link_to({action: 'untrash_items', selection: [object.uuid]}, remote: true, method: :post, data: {confirm: "Un-trash #{object.class_for_display.downcase} '#{object.friendly_link_name}'?"}) do %>
+  <% msg = "Untrash '" + if !object.name.blank? then object.name else object.uuid end + "'?" %>
+  <%= link_to({action: 'untrash_items', selection: [object.uuid]}, remote: true, method: :post,
+      title: "Untrash", style: 'cursor: pointer;') do %>
     <i class="fa fa-fw fa-recycle"></i>
   <% end %>
 <% end %>