mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-06 15:40:31 +08:00
14 lines
570 B
Text
14 lines
570 B
Text
<%= render partial: "global_activities/references/experiment.html.erb",
|
|
locals: { subject: subject&.experiment, breadcrumbs: breadcrumbs } %>
|
|
<div class="ga-breadcrumb">
|
|
<%= image_tag 'icon_small/task.svg' %>
|
|
<% if subject %>
|
|
<%= link_to my_module_path(subject), title: subject.name do %>
|
|
<%= subject.name&.truncate(Constants::NAME_TRUNCATION_LENGTH) %>
|
|
<% end %>
|
|
<% else %>
|
|
<span title="<%= breadcrumbs[:my_module] %>">
|
|
<%= breadcrumbs[:my_module]&.truncate(Constants::NAME_TRUNCATION_LENGTH) %>
|
|
</span>
|
|
<% end %>
|
|
</div>
|