2019-02-27 23:02:53 +08:00
|
|
|
<%= render partial: "global_activities/references/project.html.erb",
|
2019-03-19 20:33:32 +08:00
|
|
|
locals: { subject: subject&.project, breadcrumbs: breadcrumbs } %>
|
2019-03-25 16:39:17 +08:00
|
|
|
<div class="ga-breadcrumb">
|
2019-02-27 23:02:53 +08:00
|
|
|
<%= image_tag 'icon_small/experiment.svg' %>
|
|
|
|
<% if subject %>
|
|
|
|
<%= link_to experiment_path(subject), title: subject.name do %>
|
2019-03-19 20:33:32 +08:00
|
|
|
<%= subject.name&.truncate(Constants::NAME_TRUNCATION_LENGTH) %>
|
2019-02-27 23:02:53 +08:00
|
|
|
<% end %>
|
|
|
|
<% else %>
|
|
|
|
<span title="<%= breadcrumbs[:experiment] %>">
|
2019-03-19 21:12:39 +08:00
|
|
|
<%= breadcrumbs[:experiment]&.truncate(Constants::NAME_TRUNCATION_LENGTH) %>
|
2019-02-27 23:02:53 +08:00
|
|
|
</span>
|
|
|
|
<% end %>
|
|
|
|
</div>
|