2016-07-21 19:11:15 +08:00
|
|
|
<% results.each do |table| %>
|
|
|
|
<h5>
|
|
|
|
<span class="glyphicon glyphicon-th"></span>
|
|
|
|
<%= highlight search_query, search_query.strip.split(/\s+/) %>
|
|
|
|
</h5>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.created_at" %>
|
|
|
|
<%=l table.created_at, format: :full %>
|
|
|
|
</span>
|
|
|
|
<br>
|
|
|
|
<% if table.step %>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.step" %>
|
2016-07-26 00:06:43 +08:00
|
|
|
<%= render partial: "search/results/partials/step_text.html.erb", locals: { step: table.step, target: nil } %>
|
2016-07-21 19:11:15 +08:00
|
|
|
</span>
|
|
|
|
<br>
|
|
|
|
<% if table.step.protocol.in_module? %>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.module" %>
|
|
|
|
<%= render partial: "search/results/partials/my_module_text.html.erb",
|
|
|
|
locals: { my_module: table.step.protocol.my_module, link_to_page: :results } %>
|
|
|
|
</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: table.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",
|
|
|
|
locals: { project: table.step.protocol.my_module.experiment.project } %>
|
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: table.step.protocol, query: search_query } %>
|
2016-07-21 19:11:15 +08:00
|
|
|
</span>
|
|
|
|
<% end %>
|
|
|
|
<br>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.organization" %>
|
2016-07-26 18:59:37 +08:00
|
|
|
<%= render partial: "search/results/partials/organization_text.html.erb",
|
|
|
|
locals: { organization: table.step.protocol.organization } %>
|
2016-07-21 19:11:15 +08:00
|
|
|
</span>
|
|
|
|
<% elsif table.result %>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.result" %>
|
2016-07-26 18:59:37 +08:00
|
|
|
<%= render partial: "search/results/partials/result_text.html.erb",
|
|
|
|
locals: { result: table.result, target: nil } %>
|
2016-07-21 19:11:15 +08:00
|
|
|
</span>
|
|
|
|
<br>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.module" %>
|
2016-07-26 18:59:37 +08:00
|
|
|
<%= render partial: "search/results/partials/my_module_text.html.erb",
|
|
|
|
locals: { my_module: table.result.my_module } %>
|
2016-07-21 19:11:15 +08:00
|
|
|
</span>
|
|
|
|
<br>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.project" %>
|
2016-07-26 18:59:37 +08:00
|
|
|
<%= render partial: "search/results/partials/project_text.html.erb",
|
|
|
|
locals: { project: table.result.my_module.experiment.project } %>
|
2016-07-21 19:11:15 +08:00
|
|
|
</span>
|
|
|
|
<br>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.organization" %>
|
2016-07-26 18:59:37 +08:00
|
|
|
<%= render partial: "search/results/partials/organization_text.html.erb",
|
|
|
|
locals: { organization: table.result.my_module.experiment.project.organization } %>
|
2016-07-21 19:11:15 +08:00
|
|
|
</span>
|
|
|
|
<% end %>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<hr>
|
2016-07-26 00:06:43 +08:00
|
|
|
<% end %>
|