2019-03-26 00:35:54 +08:00
|
|
|
<% if subject.in_repository? %>
|
|
|
|
<%= render partial: "global_activities/references/team.html.erb",
|
2019-04-15 17:35:30 +08:00
|
|
|
locals: { team: team, subject: subject&.team, breadcrumbs: breadcrumbs, values: values, type_of: type_of } %>
|
2019-03-26 00:35:54 +08:00
|
|
|
<% else %>
|
|
|
|
<%= render partial: "global_activities/references/my_module.html.erb",
|
2019-04-15 17:35:30 +08:00
|
|
|
locals: { team: team, subject: subject&.my_module, breadcrumbs: breadcrumbs, values: values, type_of: type_of } %>
|
2019-03-26 00:35:54 +08:00
|
|
|
<% end %>
|
2019-03-29 22:09:20 +08:00
|
|
|
<% if subject %>
|
|
|
|
<% if subject.in_repository? %>
|
2019-04-12 21:14:41 +08:00
|
|
|
<% type = :public if subject.in_repository_public? %>
|
|
|
|
<% type = :private if subject.in_repository_private? %>
|
|
|
|
<% type = :archive if subject.in_repository_archived? %>
|
2019-03-29 22:09:20 +08:00
|
|
|
<div class="ga-breadcrumb">
|
|
|
|
<span class="fas fa-edit"></span>
|
2019-04-12 21:14:41 +08:00
|
|
|
<%= route_to_other_team protocols_path(team: subject.team, type: type),
|
2019-03-29 22:09:20 +08:00
|
|
|
team,
|
|
|
|
subject.name&.truncate(Constants::NAME_TRUNCATION_LENGTH),
|
|
|
|
title: subject.name %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
<% else %>
|
|
|
|
<div class="ga-breadcrumb">
|
|
|
|
<span class="fas fa-edit"></span>
|
2019-09-05 14:33:53 +08:00
|
|
|
<span title="<%= breadcrumbs['protocol'] %>">
|
|
|
|
<%= breadcrumbs['protocol']&.truncate(Constants::NAME_TRUNCATION_LENGTH) %>
|
2019-02-27 23:02:53 +08:00
|
|
|
</span>
|
2019-03-29 22:09:20 +08:00
|
|
|
</div>
|
|
|
|
<% end %>
|