X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/443f3228eb4c56849f77ae9c421dd1cc6fdbc5f1..bf03dd4f523463b896428527fa0685631e9ac649:/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 index 2b0a5740e4..5605564517 100644 --- a/apps/workbench/app/views/projects/show.html.erb +++ b/apps/workbench/app/views/projects/show.html.erb @@ -3,22 +3,22 @@ <% if @object.uuid == current_user.andand.uuid %> Home <% else %> - <% starred = false %> - <% starred = true if is_starred %> - <% if starred %> - <%= link_to(url_for({action: 'star', status: 'delete', id: @object.uuid, controller: 'projects'}), method: :post, class: "btn btn-xs", title: "Undo favorite") do %> - - <% end %> - <% else %> - <%= link_to(url_for({action: 'star', status: 'create', id: @object.uuid, controller: 'projects'}), method: :post, class: "btn btn-xs", title: "Mark favorite") do %> - - <% end %> - <% end %> + <%= render partial: "show_star" %> <%= render_editable_attribute @object, 'name', nil, { 'data-emptytext' => "New project" } %> <% 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? %>
@@ -47,14 +47,14 @@
<%= link_to( - choose_pipeline_templates_path( - title: 'Choose a pipeline to run:', + choose_work_unit_templates_path( + title: run_proc_title, action_name: 'Next: choose inputs ', - action_href: pipeline_instances_path, + action_href: work_units_path, action_method: 'post', - action_data: {'selection_param' => 'pipeline_instance[pipeline_template_uuid]', 'pipeline_instance[owner_uuid]' => @object.uuid, 'success' => 'redirect-to-created-object'}.to_json), - { class: "btn btn-primary btn-sm", remote: true, title: "Run a pipeline in this project" }) do %> - Run a pipeline... + 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 %> + 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 %>