mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-06 15:40:31 +08:00
14 lines
556 B
Text
14 lines
556 B
Text
<%= render partial: "global_activities/references/team.html.erb",
|
|
locals: { subject: subject&.team, breadcrumbs: breadcrumbs } %>
|
|
<div class="ga-breadcrumb">
|
|
<span class="fas fa-clipboard-check"></span>
|
|
<% if subject %>
|
|
<%= link_to reports_path(subject), title: subject.name do %>
|
|
<%= subject.name&.truncate(Constants::NAME_TRUNCATION_LENGTH) %>
|
|
<% end %>
|
|
<% else %>
|
|
<span title="<%= breadcrumbs[:report] %>">
|
|
<%= breadcrumbs[:report]&.truncate(Constants::NAME_TRUNCATION_LENGTH) %>
|
|
</span>
|
|
<% end %>
|
|
</div>
|