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