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

58 lines
1.8 KiB
Plaintext
Raw Normal View History

2016-02-12 23:52:43 +08:00
<% results.each do |result| %>
<h5>
<% if result.is_text %>
<span class="fas fa-asterisk"></span>
2016-02-12 23:52:43 +08:00
<% elsif result.is_table %>
<span class="fas fa-table"></span>
2016-02-12 23:52:43 +08:00
<% else %>
<% if result.asset.is_image? %>
<span class="fas fa-image"></span>
2016-02-12 23:52:43 +08:00
<% else %>
<span class="fas fa-paperclip"></span>
2016-02-12 23:52:43 +08:00
<% end %>
<% end %>
<%= render partial: "search/results/partials/result_text.html.erb", locals: { result: result, query: search_query, target: nil } %>
2016-02-12 23:52:43 +08:00
</h5>
2016-11-10 21:11:32 +08:00
<% if result.is_text && result.result_text.text.present? && !result.result_text.text.empty? %>
2016-07-21 19:11:15 +08:00
<blockquote class="search-asset-text-data">
<p>
<%= highlight(sanitize_input(result.result_text.text), search_query.strip.split(/\s+/)) %>
2016-07-21 19:11:15 +08:00
</p>
</blockquote>
<% end %>
2016-02-12 23:52:43 +08:00
<p>
<span>
<%=t "search.index.created_at" %>
<%=l result.created_at, format: :full %>
</span>
<br>
<span>
<%=t "search.index.module" %>
<%= render partial: "search/results/partials/my_module_text.html.erb",
locals: { my_module: result.my_module } %>
2016-02-12 23:52:43 +08:00
</span>
<br>
<span>
<%=t "search.index.experiment" %>
<%= render partial: "search/results/partials/experiment_text.html.erb",
locals: { experiment: result.my_module.experiment } %>
</span>
<br>
2016-02-12 23:52:43 +08:00
<span>
<%=t "search.index.project" %>
<%= render partial: "search/results/partials/project_text.html.erb",
locals: { project: result.my_module.experiment.project, link_to_page: :show } %>
2016-02-12 23:52:43 +08:00
</span>
<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: result.my_module.experiment.project.team } %>
2016-02-12 23:52:43 +08:00
</span>
</p>
<hr>
<% end %>