scinote-web/app/views/search/results/_assets.html.erb

76 lines
2.7 KiB
Plaintext
Raw Normal View History

2016-07-21 19:11:15 +08:00
<% @asset_results.each do |asset| %>
2016-02-12 23:52:43 +08:00
<h5>
<% if asset.is_image? %>
<span class="glyphicon glyphicon-picture"></span>
<% else %>
<span class="glyphicon glyphicon-file"></span>
<% end %>
2016-07-21 19:11:15 +08:00
<%= render partial: "search/results/partials/asset_text.html.erb", locals: { asset: asset, query: search_query } %>
2016-02-12 23:52:43 +08:00
</h5>
2016-07-21 19:11:15 +08:00
<!-- Display asset contents if it exists -->
<% if asset.headline.present? && !asset.headline.empty? && asset.headline.include?("<mark>") %>
<blockquote class="blockquote-search">
<p><%= raw asset.headline %></p>
</blockquote>
<% end %>
2016-02-12 23:52:43 +08:00
<p>
<span>
<%=t "search.index.created_at" %>
<%=l asset.created_at, format: :full %>
</span>
<br>
2016-07-21 19:11:15 +08:00
<% if asset.step %>
2016-02-12 23:52:43 +08:00
<span>
<%=t "search.index.step" %>
2016-07-26 00:06:43 +08:00
<%= render partial: "search/results/partials/step_text.html.erb", locals: { step: asset.step, target: nil } %>
2016-07-21 19:11:15 +08:00
</span>
<br>
<% if asset.step.protocol.in_module? %>
<span>
<%=t "search.index.module" %>
<%= render partial: "search/results/partials/my_module_text.html.erb", locals: { my_module: asset.step.protocol.my_module } %>
</span>
<br>
<span>
<%=t "search.index.project" %>
<%= render partial: "search/results/partials/project_text.html.erb", locals: { project: asset.step.protocol.my_module.project } %>
</span>
<% else %>
<span>
<%=t "search.index.protocol" %>
<%= render partial: "search/results/partials/protocol_text.html.erb", locals: { protocol: asset.step.protocol, query: search_query } %>
</span>
2016-02-12 23:52:43 +08:00
<% end %>
2016-07-21 19:11:15 +08:00
<br>
<span>
<%=t "search.index.organization" %>
<%= render partial: "search/results/partials/organization_text.html.erb", locals: { organization: asset.step.protocol.organization } %>
</span>
<% elsif asset.result %>
<span>
<%=t "search.index.result" %>
<%= render partial: "search/results/partials/result_text.html.erb", locals: { result: asset.result, target: nil } %>
2016-02-12 23:52:43 +08:00
</span>
<br>
<span>
<%=t "search.index.module" %>
2016-07-21 19:11:15 +08:00
<%= render partial: "search/results/partials/my_module_text.html.erb", locals: { my_module: asset.result.my_module } %>
2016-02-12 23:52:43 +08:00
</span>
<br>
<span>
<%=t "search.index.project" %>
2016-07-21 19:11:15 +08:00
<%= render partial: "search/results/partials/project_text.html.erb", locals: { project: asset.result.my_module.project } %>
2016-02-12 23:52:43 +08:00
</span>
<br>
<span>
<%=t "search.index.organization" %>
2016-07-21 19:11:15 +08:00
<%= render partial: "search/results/partials/organization_text.html.erb", locals: { organization: asset.result.my_module.project.organization } %>
2016-02-12 23:52:43 +08:00
</span>
<% end %>
</p>
<hr>
<% end %>