2016-02-12 23:52:43 +08:00
|
|
|
<% results.each do |mod| %>
|
|
|
|
<h5>
|
|
|
|
<span class="glyphicon glyphicon-credit-card"></span>
|
|
|
|
<%= render partial: "search/results/partials/my_module_text.html.erb", locals: { my_module: mod, query: search_query } %>
|
|
|
|
</h5>
|
|
|
|
|
2016-07-21 19:11:15 +08:00
|
|
|
<% if mod.description.present? && !mod.description.empty? %>
|
2016-02-12 23:52:43 +08:00
|
|
|
<p>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.description" %>
|
2016-07-21 19:11:15 +08:00
|
|
|
<%= highlight mod.description, search_query.strip.split(/\s+/) %>
|
2016-02-12 23:52:43 +08:00
|
|
|
</span>
|
|
|
|
<p>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.created_at" %>
|
|
|
|
<%=l mod.created_at, format: :full %>
|
|
|
|
</span>
|
|
|
|
<br>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.project" %>
|
|
|
|
<%= render partial: "search/results/partials/project_text.html.erb", locals: { project: mod.project } %>
|
|
|
|
</span>
|
|
|
|
<br>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.organization" %>
|
|
|
|
<%= render partial: "search/results/partials/organization_text.html.erb", locals: { organization: mod.project.organization } %>
|
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
<% end %>
|
|
|
|
|