mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
17 lines
717 B
Text
17 lines
717 B
Text
<%= render partial: "global_activities/references/team.html.erb",
|
|
locals: { team: team, subject: team, breadcrumbs: breadcrumbs, values: values, type_of: type_of } %>
|
|
<div class="ga-breadcrumb">
|
|
<span class="fas fa-folder"></span>
|
|
|
|
<% if subject %>
|
|
<% path = project_folder_path(subject, team: team) %>
|
|
<%= 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>
|