1 <% content_for :content_top do %>
3 <% if @object.uuid == current_user.andand.uuid %>
6 <%= render partial: "show_star" %>
7 <%= render_editable_attribute @object, 'name', nil, { 'data-emptytext' => "New project" } %>
12 <% content_for :tab_line_buttons do %>
13 <% if @object.editable? %>
14 <div class="btn-group btn-group-sm">
15 <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>
16 <ul class="dropdown-menu pull-right" role="menu">
19 choose_collections_path(
20 title: 'Choose a collection to copy into this project:',
23 action_href: actions_path(id: @object.uuid),
24 action_method: 'post',
25 action_data: {selection_param: 'selection[]', copy_selections_into_project: @object.uuid, success: 'page-refresh'}.to_json),
26 { remote: true, data: {'event-after-select' => 'page-refresh', 'toggle' => 'dropdown'} }) do %>
27 <i class="fa fa-fw fa-clipboard"></i> Copy data from another project
31 <%= link_to(collections_path(options: {ensure_unique_name: true}, collection: {manifest_text: "", name: "New collection", owner_uuid: @object.uuid}, redirect_to_anchor: 'Upload'), {
33 data: {toggle: 'dropdown'}}) do %>
34 <i class="fa fa-fw fa-upload"></i> Upload files from my computer
40 choose_work_unit_templates_path(
41 title: 'Choose a pipeline or workflow to run:',
42 action_name: 'Next: choose inputs <i class="fa fa-fw fa-arrow-circle-right"></i>',
43 action_href: work_units_path,
44 action_method: 'post',
45 action_data: {'selection_param' => 'work_unit[template_uuid]', 'work_unit[owner_uuid]' => @object.uuid, 'success' => 'redirect-to-created-object'}.to_json),
46 { class: "btn btn-primary btn-sm", remote: true, title: "Run a pipeline or workflow in this project" }) do %>
47 <i class="fa fa-fw fa-gear"></i> Run a pipeline...
49 <%= 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 %>
50 <i class="fa fa-fw fa-plus"></i>
56 <%= render file: 'application/show.html.erb', locals: local_assigns %>