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

55 lines
1.5 KiB
Plaintext
Raw Normal View History

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" %>
<%= render partial: "search/results/partials/project_text.html.erb",
locals: { project: report.project, link_to_page: :show } %>
2016-02-12 23:52:43 +08:00
</span>
<br>
<span>
<%=t "search.index.organization" %>
<%= render partial: "search/results/partials/organization_text.html.erb",
locals: { organization: report.project.organization } %>
2016-02-12 23:52:43 +08:00
</span>
</p>
<hr>
<% end %>