2018-06-01 19:49:02 +08:00
|
|
|
<% if experiment.active_my_modules.present? %>
|
2020-04-01 04:12:38 +08:00
|
|
|
<ul class="tree-child hidden" data-branch-id="exp<%= experiment.id %>">
|
2018-11-29 18:28:36 +08:00
|
|
|
<% experiment.active_my_modules.each do |my_module| %>
|
2020-04-01 04:12:38 +08:00
|
|
|
<li class="leaf" data-module-id="<%= my_module.id %>">
|
2020-01-29 20:22:35 +08:00
|
|
|
<span class="tree-link task-tree-link second-indent" title="<%= my_module.name %>">
|
2020-01-06 23:07:23 +08:00
|
|
|
<%= link_to my_module.name,
|
|
|
|
module_action_to_link_to(my_module),
|
2020-01-29 20:22:35 +08:00
|
|
|
class: 'line-wrap',
|
2020-01-06 23:07:23 +08:00
|
|
|
data: { type: 'my_module', id: my_module.id } %>
|
2020-04-01 04:12:38 +08:00
|
|
|
<% if action_name =='canvas' %>
|
2020-02-28 21:03:08 +08:00
|
|
|
<a href="" class="canvas-center-on"><i class="fas fa-map-marker-alt"></i></a>
|
|
|
|
<% end %>
|
2018-06-01 19:49:02 +08:00
|
|
|
</span>
|
2016-07-29 21:58:47 +08:00
|
|
|
</li>
|
|
|
|
<% end %>
|
|
|
|
</ul>
|
2016-08-03 22:09:45 +08:00
|
|
|
<% end %>
|