20690: Remove workbench1 and testing/packaging references.
[arvados.git] / apps / workbench / app / views / projects / show.html.erb
diff --git a/apps/workbench/app/views/projects/show.html.erb b/apps/workbench/app/views/projects/show.html.erb
deleted file mode 100644 (file)
index 60f2d23..0000000
+++ /dev/null
@@ -1,73 +0,0 @@
-<%# Copyright (C) The Arvados Authors. All rights reserved.
-
-SPDX-License-Identifier: AGPL-3.0 %>
-
-<% content_for :content_top do %>
-  <h2>
-    <% if @object.uuid == current_user.andand.uuid %>
-      Home
-    <% else %>
-      <%= render partial: "show_star" %>
-      <%= render_editable_attribute @object, 'name', nil, { 'data-emptytext' => "New project" } %>
-    <% end %>
-  </h2>
-  <% if @object.class == Group and @object.group_class == 'filter' %>
-    This is a filter group.
-  <% end %>
-<% end %>
-
-<%
-  if !PipelineInstance.api_exists?(:index)
-    run_proc_title = 'Choose a workflow to run:'
-    run_proc_hover = 'Run a workflow in this project'
-  else
-    run_proc_title = 'Choose a pipeline or workflow to run:'
-    run_proc_hover = 'Run a pipeline or workflow in this project'
-  end
-%>
-
-<% content_for :tab_line_buttons do %>
-  <% if @object.editable? %>
-    <div class="btn-group btn-group-sm">
-      <button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown"><i class="fa fa-fw fa-plus"></i> Add data <span class="caret"></span></button>
-      <ul class="dropdown-menu pull-right" role="menu">
-        <li>
-          <%= link_to(
-                choose_collections_path(
-                  title: 'Choose a collection to copy into this project:',
-                  multiple: true,
-                  action_name: 'Copy',
-                  action_href: actions_path(id: @object.uuid),
-                  action_method: 'post',
-                  action_data: {selection_param: 'selection[]', copy_selections_into_project: @object.uuid, success: 'page-refresh'}.to_json),
-                { remote: true, data: {'event-after-select' => 'page-refresh', 'toggle' => 'dropdown'} }) do %>
-            <i class="fa fa-fw fa-clipboard"></i> Copy data from another project
-          <% end %>
-        </li>
-        <li>
-          <%= link_to(collections_path(options: {ensure_unique_name: true}, collection: {manifest_text: "", name: "New collection", owner_uuid: @object.uuid}, redirect_to_anchor: 'Upload'), {
-              method: 'post',
-              data: {toggle: 'dropdown'}}) do %>
-            <i class="fa fa-fw fa-upload"></i> Upload files from my computer
-          <% end %>
-        </li>
-      </ul>
-    </div>
-    <%= link_to(
-          choose_work_unit_templates_path(
-            title: run_proc_title,
-            action_name: 'Next: choose inputs <i class="fa fa-fw fa-arrow-circle-right"></i>',
-            action_href: work_units_path,
-            action_method: 'post',
-            action_data: {'selection_param' => 'work_unit[template_uuid]', 'work_unit[owner_uuid]' => @object.uuid, 'success' => 'redirect-to-created-object'}.to_json),
-          { class: "btn btn-primary btn-sm", remote: true, title: run_proc_hover }) do %>
-      <i class="fa fa-fw fa-gear"></i> Run a process...
-    <% end %>
-    <%= link_to projects_path({'project[owner_uuid]' => @object.uuid, 'options' => {'ensure_unique_name' => true}}), method: :post, title: "Add a subproject to this project", class: 'btn btn-sm btn-primary' do %>
-      <i class="fa fa-fw fa-plus"></i>
-      Add a subproject
-    <% end %>
-  <% end %>
-<% end %>
-
-<%= render file: 'application/show.html.erb', locals: local_assigns %>