mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-17 14:46:00 +08:00
16 lines
711 B
Text
16 lines
711 B
Text
<%= render partial: "global_activities/references/team.html.erb",
|
|
locals: { team: team, subject: subject&.team, breadcrumbs: breadcrumbs } %>
|
|
<div class="ga-breadcrumb">
|
|
<%= image_tag 'icon_small/project.svg' %>
|
|
<% if subject %>
|
|
<% path = subject.archived? ? projects_path(team: team) : project_path(subject) %>
|
|
<%= route_to_other_team(path,
|
|
team,
|
|
subject.name&.truncate(Constants::NAME_TRUNCATION_LENGTH),
|
|
title: subject.name) %>
|
|
<% else %>
|
|
<span title="<%= breadcrumbs[:project] %>">
|
|
<%= breadcrumbs[:project]&.truncate(Constants::NAME_TRUNCATION_LENGTH) %>
|
|
</span>
|
|
<% end %>
|
|
</div>
|