2016-02-12 23:52:43 +08:00
|
|
|
<% results.each do |step| %>
|
|
|
|
<h5>
|
|
|
|
<span class="glyphicon glyphicon-circle-arrow-right"></span>
|
2016-07-26 00:06:43 +08:00
|
|
|
<%= render partial: "search/results/partials/step_text.html.erb", locals: { step: step, query: search_query, target: nil } %>
|
2016-02-12 23:52:43 +08:00
|
|
|
</h5>
|
|
|
|
|
2016-07-21 19:11:15 +08:00
|
|
|
<% if step.description.present? && !step.description.empty? %>
|
|
|
|
<p>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.description" %>
|
|
|
|
<%= highlight step.description, search_query.strip.split(/\s+/) %>
|
|
|
|
</span>
|
|
|
|
<p>
|
|
|
|
<% end %>
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
<p>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.created_at" %>
|
|
|
|
<%=l step.created_at, format: :full %>
|
|
|
|
</span>
|
|
|
|
<br>
|
2016-07-21 19:11:15 +08:00
|
|
|
<% if step.protocol.in_module? %>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.module" %>
|
|
|
|
<%= render partial: "search/results/partials/my_module_text.html.erb",
|
|
|
|
locals: { my_module: step.protocol.my_module, link_to_page: :protocols } %>
|
|
|
|
</span>
|
|
|
|
<br>
|
2016-07-26 18:12:43 +08:00
|
|
|
<span>
|
|
|
|
<%=t "search.index.experiment" %>
|
2016-07-26 18:59:37 +08:00
|
|
|
<%= render partial: "search/results/partials/experiment_text.html.erb",
|
|
|
|
locals: { experiment: step.protocol.my_module.experiment } %>
|
2016-07-26 18:12:43 +08:00
|
|
|
</span>
|
|
|
|
<br>
|
2016-07-21 19:11:15 +08:00
|
|
|
<span>
|
|
|
|
<%=t "search.index.project" %>
|
2016-07-26 18:59:37 +08:00
|
|
|
<%= render partial: "search/results/partials/project_text.html.erb",
|
2016-09-05 17:40:49 +08:00
|
|
|
locals: { project: step.protocol.my_module.experiment.project, link_to_page: :show } %>
|
2016-07-21 19:11:15 +08:00
|
|
|
</span>
|
|
|
|
<% else %>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.protocol" %>
|
2016-07-26 18:59:37 +08:00
|
|
|
<%= render partial: "search/results/partials/protocol_text.html.erb",
|
|
|
|
locals: { protocol: step.protocol, query: search_query } %>
|
2016-07-21 19:11:15 +08:00
|
|
|
</span>
|
|
|
|
<% end %>
|
2016-02-12 23:52:43 +08:00
|
|
|
<br>
|
|
|
|
<span>
|
2017-01-25 19:01:23 +08:00
|
|
|
<%=t "search.index.team" %>
|
|
|
|
<%= render partial: "search/results/partials/team_text.html.erb",
|
|
|
|
locals: { team: step.protocol.team } %>
|
2016-02-12 23:52:43 +08:00
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
<% end %>
|