2020-11-04 23:10:40 +08:00
|
|
|
<div id="projectsToolbar" class="projects-toolbar">
|
2020-12-29 05:49:52 +08:00
|
|
|
<div class="form-inline">
|
2020-12-30 01:38:59 +08:00
|
|
|
<div class="project-actions">
|
2020-12-29 05:49:52 +08:00
|
|
|
<!-- new project button -->
|
|
|
|
<% if current_team && can_create_projects?(current_team) %>
|
|
|
|
<%= link_to new_project_path(project_folder_id: @current_folder),
|
|
|
|
class: 'btn btn-primary new-project-btn',
|
|
|
|
remote: true do %>
|
|
|
|
<span class="fas fa-plus" aria-hidden="true"></span>
|
|
|
|
<span class="hidden-xs"><%= t('projects.index.new') %></span>
|
2020-12-01 16:59:08 +08:00
|
|
|
<% end %>
|
2020-12-29 05:49:52 +08:00
|
|
|
<% end %>
|
|
|
|
<!-- new project folder button -->
|
|
|
|
<% if current_team && can_create_project_folders?(current_team) %>
|
|
|
|
<%= link_to new_project_folder_path(project_folder_id: @current_folder),
|
2021-01-06 18:13:28 +08:00
|
|
|
class: 'btn btn-light new-project-folder-btn',
|
2020-12-29 05:49:52 +08:00
|
|
|
remote: true do %>
|
|
|
|
<span class="fas fa-folder" aria-hidden="true"></span>
|
|
|
|
<span class="hidden-xs"><%= t('projects.index.new_folder') %></span>
|
2020-11-02 20:27:06 +08:00
|
|
|
<% end %>
|
2020-12-29 05:49:52 +08:00
|
|
|
<% end %>
|
2021-01-06 18:13:28 +08:00
|
|
|
<a href="#" class="btn btn-light edit-btn single-object-action hidden" data-view-mode="active">
|
2020-12-29 05:49:52 +08:00
|
|
|
<span class="fas fa-folder" aria-hidden="true"></span>
|
|
|
|
<span class="hidden-xs"><%= t('projects.index.edit_button') %></span>
|
|
|
|
</a>
|
2021-01-06 18:13:28 +08:00
|
|
|
<a href="#" class="btn btn-light move-projects-btn multiple-object-action hidden">
|
2020-12-29 05:49:52 +08:00
|
|
|
<span class="fas fa-arrow-right" aria-hidden="true"></span>
|
|
|
|
<span class="hidden-xs"><%= t('projects.index.move_button') %></span>
|
|
|
|
</a>
|
|
|
|
<%= button_to archive_group_projects_path,
|
2021-01-06 18:13:28 +08:00
|
|
|
class: 'btn btn-light archive-projects-btn multiple-object-action project-only-action hidden',
|
2020-12-29 05:49:52 +08:00
|
|
|
form_class: 'archive-projects-form',
|
|
|
|
remote: true,
|
|
|
|
method: :post do %>
|
|
|
|
<span class="fas fa-archive" aria-hidden="true"></span>
|
|
|
|
<span class="hidden-xs"><%= t('projects.index.archive_button') %></span>
|
|
|
|
<% end %>
|
|
|
|
<!-- export projects button -->
|
2021-01-06 18:13:28 +08:00
|
|
|
<a href="#" class="btn btn-light export-projects-btn multiple-object-action hidden"
|
2020-12-29 05:49:52 +08:00
|
|
|
data-export-projects-modal-url="<%= export_projects_modal_team_path(current_team) %>">
|
|
|
|
<span class="fas fa-file-export"></span>
|
|
|
|
<span class="hidden-xs-custom"><%= t('projects.export_projects.export_button') %></span>
|
|
|
|
</a>
|
2020-10-26 20:42:32 +08:00
|
|
|
</div>
|
2020-12-29 05:49:52 +08:00
|
|
|
</div>
|
2020-10-26 20:42:32 +08:00
|
|
|
</div>
|