X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b7c8b1cc7d646c99493558ab20d3b313eb7b2d9f..789e1eb86b5286f3d34b112e0ab802bd3a2793b2:/apps/workbench/app/views/application/_title_and_buttons.html.erb diff --git a/apps/workbench/app/views/application/_title_and_buttons.html.erb b/apps/workbench/app/views/application/_title_and_buttons.html.erb index 822c904857..83d08f5527 100644 --- a/apps/workbench/app/views/application/_title_and_buttons.html.erb +++ b/apps/workbench/app/views/application/_title_and_buttons.html.erb @@ -31,7 +31,8 @@ Copy to project... <% end %> <% end %> - <% if @object.owner_uuid == current_user.uuid or (Group.find(@object.owner_uuid).writable_by.include?(current_user.uuid) rescue nil) %> + <% if @object.owner_uuid == current_user.uuid or current_user.is_admin or + (Group.find(@object.owner_uuid).writable_by.include?(current_user.uuid) rescue nil) %> <%= link_to( choose_projects_path( title: "Move this #{object_class} to:", @@ -44,7 +45,7 @@ selection_param: 'uuid', success: 'redirect-to-created-object' }.to_json), - { class: "btn btn-sm btn-primary", remote: true, method: 'get', + { class: "btn btn-sm btn-primary force-cache-reload", remote: true, method: 'get', title: "Move this #{object_class} to a different project"}) do %> Move <%=object_class%>... <% end %> @@ -53,7 +54,7 @@ <% end %> <% - # Display any flash messages in an alert. If there is any entry with "error" key, alert-danger is used. + # Display any flash messages in an alert. If there is any entry with "error" key, alert-danger is used. flash_msg = '' flash_msg_is_error = false flash.each do |msg|