2019-02-27 23:02:53 +08:00
|
|
|
<%= 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-25 16:39:17 +08:00
|
|
|
<div class="ga-breadcrumb">
|
2019-03-27 00:03:56 +08:00
|
|
|
|
|
|
|
<span class="<%=result_icon_class(subject)%>"></span>
|
2019-03-28 20:43:50 +08:00
|
|
|
<% if subject&.navigable? %>
|
|
|
|
<% path = subject.archived? ? archive_my_module_path(subject.my_module) : results_my_module_path(subject.my_module) %>
|
2019-03-28 21:56:34 +08:00
|
|
|
<%= route_to_other_team(path,
|
|
|
|
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
|
|
|
<% name = subject&.name || breadcrumbs['result'] %>
|
2019-03-28 20:43:50 +08:00
|
|
|
<span title="<%= name %>">
|
|
|
|
<%= name&.truncate(Constants::NAME_TRUNCATION_LENGTH) %>
|
2019-02-27 23:02:53 +08:00
|
|
|
</span>
|
|
|
|
<% end %>
|
|
|
|
</div>
|