mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 04:06:53 +08:00
16 lines
737 B
Text
16 lines
737 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">
|
|
<%= 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>
|