scinote-web/app/views/search/results/_tables.html.erb
2016-07-21 13:11:15 +02:00

65 lines
2.3 KiB
Plaintext

<% 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" %>
<%= render partial: "search/results/partials/step_text.html.erb", locals: { step: table.step } %>
</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>
<span>
<%=t "search.index.project" %>
<%= render partial: "search/results/partials/project_text.html.erb", locals: { project: table.step.protocol.my_module.project } %>
</span>
<% else %>
<span>
<%=t "search.index.protocol" %>
<%= render partial: "search/results/partials/protocol_text.html.erb", locals: { protocol: table.step.protocol, query: search_query } %>
</span>
<% end %>
<br>
<span>
<%=t "search.index.organization" %>
<%= render partial: "search/results/partials/organization_text.html.erb", locals: { organization: table.step.protocol.organization } %>
</span>
<% elsif table.result %>
<span>
<%=t "search.index.result" %>
<%= render partial: "search/results/partials/result_text.html.erb", locals: { result: table.result } %>
</span>
<br>
<span>
<%=t "search.index.module" %>
<%= render partial: "search/results/partials/my_module_text.html.erb", locals: { my_module: table.result.my_module } %>
</span>
<br>
<span>
<%=t "search.index.project" %>
<%= render partial: "search/results/partials/project_text.html.erb", locals: { project: table.result.my_module.project } %>
</span>
<br>
<span>
<%=t "search.index.organization" %>
<%= render partial: "search/results/partials/organization_text.html.erb", locals: { organization: table.result.my_module.project.organization } %>
</span>
<% end %>
</p>
<hr>
<% end %>