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