2016-07-28 19:29:26 +08:00
|
|
|
<% target = nil if local_assigns[:target].nil? %>
|
2016-02-12 23:52:43 +08:00
|
|
|
<% query ||= nil %>
|
2016-07-21 19:11:15 +08:00
|
|
|
<% text = query.present? ? highlight(result.name, query.strip.split(/\s+/)) : result.name %>
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
<% if result.archived? %>
|
|
|
|
<span class="label label-warning"><%=t "search.index.archived" %></span>
|
|
|
|
<% if can_view_module_archive(result.my_module) %>
|
2016-07-21 19:11:15 +08:00
|
|
|
<% if target == :comment %>
|
2017-01-25 19:01:23 +08:00
|
|
|
<%= route_to_other_team archive_my_module_path(result.my_module, ctarget: "result-panel-#{result.id}"),
|
|
|
|
result.my_module.experiment.project.team,
|
|
|
|
text %>
|
2016-10-11 22:16:48 +08:00
|
|
|
|
2016-07-21 19:11:15 +08:00
|
|
|
<% else %>
|
2017-01-25 19:01:23 +08:00
|
|
|
<%= route_to_other_team archive_my_module_path(result.my_module),
|
|
|
|
result.my_module.experiment.project.team,
|
|
|
|
text %>
|
2016-07-21 19:11:15 +08:00
|
|
|
<% end %>
|
2016-02-12 23:52:43 +08:00
|
|
|
<% else %>
|
|
|
|
<%= text %>
|
|
|
|
<% end %>
|
|
|
|
<% else %>
|
|
|
|
<% if can_view_results_in_module(result.my_module) %>
|
2016-07-21 19:11:15 +08:00
|
|
|
<% if target == :comment %>
|
2017-01-25 19:01:23 +08:00
|
|
|
<%= route_to_other_team results_my_module_path(result.my_module, ctarget: "result-panel-#{result.id}"),
|
|
|
|
result.my_module.experiment.project.team,
|
|
|
|
text %>
|
2016-07-21 19:11:15 +08:00
|
|
|
<% else %>
|
2017-01-25 19:01:23 +08:00
|
|
|
<%= route_to_other_team results_my_module_path(result.my_module),
|
|
|
|
result.my_module.experiment.project.team,
|
|
|
|
text %>
|
2016-07-21 19:11:15 +08:00
|
|
|
<% end %>
|
2016-02-12 23:52:43 +08:00
|
|
|
<% else %>
|
|
|
|
<%= text %>
|
|
|
|
<% end %>
|
2016-07-21 19:11:15 +08:00
|
|
|
<% end %>
|