scinote-web/app/views/global_activities/references/_repository_base.html.erb

16 lines
698 B
Plaintext
Raw Normal View History

<%= render partial: "global_activities/references/team.html.erb",
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">
<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),
team,
subject.name&.truncate(Constants::NAME_TRUNCATION_LENGTH),
title: subject.name) %>
<% else %>
<span title="<%= breadcrumbs['repository'] %>">
<%= breadcrumbs['repository']&.truncate(Constants::NAME_TRUNCATION_LENGTH) %>
</span>
<% end %>
</div>