mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
19 lines
780 B
Text
19 lines
780 B
Text
<% if project.active_experiments.present? %>
|
|
<ul>
|
|
<% project.active_experiments.each do |experiment| %>
|
|
<% cache [action_name, current_user, experiment] do %>
|
|
<li data-parent="candidate">
|
|
<span class="tree-link line-wrap first-indent" title="<%= experiment.name %>">
|
|
<i class="no-arrow"></i>
|
|
<%= link_to experiment.name,
|
|
experiment_action_to_link_to(experiment),
|
|
class: 'overview_exp_label line-wrap',
|
|
data: { type: 'experiment', id: experiment.id }
|
|
%>
|
|
</span>
|
|
<%= render partial: 'shared/sidebar/my_modules', locals: { experiment: experiment } %>
|
|
</li>
|
|
<% end %>
|
|
<% end %>
|
|
</ul>
|
|
<% end %>
|