mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-05 22:44:22 +08:00
48 lines
1.5 KiB
Text
48 lines
1.5 KiB
Text
<% results.each do |step| %>
|
|
<h5>
|
|
<span class="glyphicon glyphicon-circle-arrow-right"></span>
|
|
<%= render partial: "search/results/partials/step_text.html.erb", locals: { step: step, query: search_query } %>
|
|
</h5>
|
|
|
|
<% if step.description.present? && !step.description.empty? %>
|
|
<p>
|
|
<span>
|
|
<%=t "search.index.description" %>
|
|
<%= highlight step.description, search_query.strip.split(/\s+/) %>
|
|
</span>
|
|
<p>
|
|
<% end %>
|
|
|
|
<p>
|
|
<span>
|
|
<%=t "search.index.created_at" %>
|
|
<%=l step.created_at, format: :full %>
|
|
</span>
|
|
<br>
|
|
<% 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>
|
|
<span>
|
|
<%=t "search.index.project" %>
|
|
<%= render partial: "search/results/partials/project_text.html.erb", locals: { project: step.protocol.my_module.project } %>
|
|
</span>
|
|
<% else %>
|
|
<span>
|
|
<%=t "search.index.protocol" %>
|
|
<%= render partial: "search/results/partials/protocol_text.html.erb", locals: { protocol: step.protocol, query: search_query } %>
|
|
</span>
|
|
<% end %>
|
|
<br>
|
|
<span>
|
|
<%=t "search.index.organization" %>
|
|
<%= render partial: "search/results/partials/organization_text.html.erb", locals: { organization: step.protocol.organization } %>
|
|
</span>
|
|
</p>
|
|
|
|
<hr>
|
|
<% end %>
|
|
|