mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-16 11:54:55 +08:00
14 lines
479 B
Text
14 lines
479 B
Text
|
<div class="col-xs-2">
|
||
|
<span class="fas fa-users"></span>
|
||
|
<% if subject %>
|
||
|
<%= route_to_other_team projects_path(team: subject.id),
|
||
|
subject,
|
||
|
subject.name.truncate(Constants::NAME_TRUNCATION_LENGTH),
|
||
|
title: subject.name %>
|
||
|
<% else %>
|
||
|
<span title="<%= breadcrumbs[:team] %>">
|
||
|
<%= breadcrumbs[:team].truncate(Constants::NAME_TRUNCATION_LENGTH) %>
|
||
|
</span>
|
||
|
<% end %>
|
||
|
</div>
|