2016-02-12 23:52:43 +08:00
|
|
|
<% results.each do |project| %>
|
|
|
|
<h5>
|
|
|
|
<span class="glyphicon glyphicon-blackboard"></span>
|
2016-08-17 15:28:35 +08:00
|
|
|
<%= render partial: 'search/results/partials/project_text.html.erb',
|
2016-07-27 22:28:18 +08:00
|
|
|
locals: { project: project, query: search_query, link_to_page: :show } %>
|
2016-02-12 23:52:43 +08:00
|
|
|
</h5>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<span>
|
2016-08-17 15:28:35 +08:00
|
|
|
<%=t 'search.index.created_at' %>
|
2016-02-12 23:52:43 +08:00
|
|
|
<%=l project.created_at, format: :full %>
|
|
|
|
</span>
|
|
|
|
<br>
|
|
|
|
<span>
|
2016-08-17 15:28:35 +08:00
|
|
|
<%=t 'search.index.organization' %>
|
|
|
|
<%= render partial: 'search/results/partials/organization_text.html.erb',
|
2016-07-26 18:59:37 +08:00
|
|
|
locals: { organization: project.organization } %>
|
2016-02-12 23:52:43 +08:00
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
<% end %>
|