mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-05 23:17:33 +08:00
35 lines
1.4 KiB
Text
35 lines
1.4 KiB
Text
<% target = nil if local_assigns[:target].nil? %>
|
|
<% query ||= nil %>
|
|
<% text = query.present? ? highlight(result.name, query.strip.split(/\s+/)) : result.name %>
|
|
|
|
<% if result.archived? %>
|
|
<span class="label label-warning"><%=t "search.index.archived" %></span>
|
|
<% if can_view_module_archive(result.my_module) %>
|
|
<% if target == :comment %>
|
|
<%= route_to_other_team archive_my_module_path(result.my_module, ctarget: "result-panel-#{result.id}"),
|
|
result.my_module.experiment.project.team,
|
|
text %>
|
|
|
|
<% else %>
|
|
<%= route_to_other_team archive_my_module_path(result.my_module),
|
|
result.my_module.experiment.project.team,
|
|
text %>
|
|
<% end %>
|
|
<% else %>
|
|
<%= text %>
|
|
<% end %>
|
|
<% else %>
|
|
<% if can_view_results_in_module(result.my_module) %>
|
|
<% if target == :comment %>
|
|
<%= route_to_other_team results_my_module_path(result.my_module, ctarget: "result-panel-#{result.id}"),
|
|
result.my_module.experiment.project.team,
|
|
text %>
|
|
<% else %>
|
|
<%= route_to_other_team results_my_module_path(result.my_module),
|
|
result.my_module.experiment.project.team,
|
|
text %>
|
|
<% end %>
|
|
<% else %>
|
|
<%= text %>
|
|
<% end %>
|
|
<% end %>
|