mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-26 17:51:13 +08:00
f15d984d47
* Fix navigation between archived and active projects [SCI-5419]
19 lines
841 B
Text
19 lines
841 B
Text
<% target_folder ||= current_folder %>
|
|
<div class="projects-breadcrumbs">
|
|
<%= link_to(t('projects.index.breadcrumbs_root'),
|
|
projects_path,
|
|
class: 'project-folder-link',
|
|
data: { projects_cards_url: cards_projects_url,
|
|
sidebar_url: sidebar_team_path(current_team) }) %>
|
|
<span>/</span>
|
|
<% tree_ordered_parent_folders(target_folder)&.each do |project_folder| %>
|
|
<%= link_to(project_folder.name,
|
|
project_folder_path(project_folder),
|
|
class: 'project-folder-link',
|
|
data: { projects_cards_url: project_folder_cards_url(project_folder),
|
|
sidebar_url: sidebar_team_path(current_team, project_folder_id: project_folder.id),
|
|
}
|
|
) %>
|
|
<span>/</span>
|
|
<% end %>
|
|
</div>
|