2019-02-27 23:02:53 +08:00
|
|
|
<%= render partial: "global_activities/references/team.html.erb",
|
2021-03-02 18:13:08 +08:00
|
|
|
locals: { team: team, subject: team, breadcrumbs: breadcrumbs, values: values, type_of: type_of } %>
|
2019-03-25 16:39:17 +08:00
|
|
|
<div class="ga-breadcrumb">
|
2019-02-27 23:02:53 +08:00
|
|
|
<span class="fas fa-list-alt"></span>
|
|
|
|
<% if subject %>
|
2020-04-23 22:02:36 +08:00
|
|
|
<%= route_to_other_team(repository_path(subject.id, team: subject.team.id),
|
2019-03-28 21:56:34 +08:00
|
|
|
team,
|
|
|
|
subject.name&.truncate(Constants::NAME_TRUNCATION_LENGTH),
|
|
|
|
title: subject.name) %>
|
2019-02-27 23:02:53 +08:00
|
|
|
<% else %>
|
2019-09-05 14:33:53 +08:00
|
|
|
<span title="<%= breadcrumbs['repository'] %>">
|
|
|
|
<%= breadcrumbs['repository']&.truncate(Constants::NAME_TRUNCATION_LENGTH) %>
|
2019-02-27 23:02:53 +08:00
|
|
|
</span>
|
|
|
|
<% end %>
|
|
|
|
</div>
|