2016-02-12 23:52:43 +08:00
|
|
|
<% results.each do |report| %>
|
|
|
|
<h5>
|
|
|
|
<span class="glyphicon glyphicon-list-alt"></span>
|
|
|
|
<%= render partial: "search/results/partials/report_text.html.erb", locals: { report: report, query: search_query } %>
|
|
|
|
</h5>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.description" %>
|
|
|
|
<% if report.description.present? %>
|
2016-07-21 19:11:15 +08:00
|
|
|
<%= highlight report.description, @search_query.strip.split(/\s+/) %>
|
2016-02-12 23:52:43 +08:00
|
|
|
<% else %>
|
|
|
|
<em><%=t "search.index.no_description" %></em>
|
|
|
|
<% end %>
|
|
|
|
</span>
|
|
|
|
<br>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.created_by" %>
|
2016-07-21 19:11:15 +08:00
|
|
|
<%= highlight report.user.full_name, @search_query.strip.split(/\s+/) %>
|
2016-02-12 23:52:43 +08:00
|
|
|
</span>
|
|
|
|
<br>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.created_at" %>
|
|
|
|
<%=l report.created_at, format: :full %>
|
|
|
|
</span>
|
|
|
|
<br>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.last_modified_by" %>
|
2016-07-21 19:11:15 +08:00
|
|
|
<%= highlight report.last_modified_by.full_name, @search_query.strip.split(/\s+/) %>
|
2016-02-12 23:52:43 +08:00
|
|
|
</span>
|
|
|
|
<br>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.last_modified_at" %>
|
|
|
|
<%=l report.updated_at, format: :full %>
|
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<span>
|
|
|
|
<%=t "search.index.project" %>
|
2016-07-26 18:59:37 +08:00
|
|
|
<%= render partial: "search/results/partials/project_text.html.erb",
|
2016-09-05 17:40:49 +08:00
|
|
|
locals: { project: report.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: report.project.team } %>
|
2016-02-12 23:52:43 +08:00
|
|
|
</span>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<hr>
|
|
|
|
<% end %>
|