2020-12-01 21:51:26 +08:00
|
|
|
<%= render partial: "global_activities/references/team.html.erb",
|
2021-03-02 18:13:08 +08:00
|
|
|
locals: { team: team, subject: team, breadcrumbs: breadcrumbs, values: values, type_of: type_of } %>
|
2020-12-01 21:51:26 +08:00
|
|
|
<div class="ga-breadcrumb">
|
|
|
|
<span class="fas fa-folder"></span>
|
|
|
|
|
|
|
|
<% if subject %>
|
2021-01-14 22:06:56 +08:00
|
|
|
<% path = project_folder_path(subject, team: team) %>
|
2020-12-01 21:51:26 +08:00
|
|
|
<%= route_to_other_team(path,
|
|
|
|
team,
|
|
|
|
subject.name&.truncate(Constants::NAME_TRUNCATION_LENGTH),
|
|
|
|
title: subject.name) %>
|
|
|
|
<% else %>
|
|
|
|
<span title="<%= breadcrumbs['project_folder'] %>">
|
|
|
|
<%= breadcrumbs['project_folder']&.truncate(Constants::NAME_TRUNCATION_LENGTH) %>
|
|
|
|
</span>
|
|
|
|
<% end %>
|
|
|
|
</div>
|