mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
60 lines
No EOL
2 KiB
Text
60 lines
No EOL
2 KiB
Text
<% results.each do |comment| %>
|
|
|
|
<p>
|
|
<span class="glyphicon glyphicon-comment"></span>
|
|
<% if comment.project_comment.present? %>
|
|
<%=t "search.index.comments.project" %>
|
|
<% elsif comment.my_module_comment.present? %>
|
|
<%=t "search.index.comments.my_module" %>
|
|
<% elsif comment.step_comment.present? %>
|
|
<%=t "search.index.comments.step" %>
|
|
<% elsif comment.result_comment.present? %>
|
|
<%=t "search.index.comments.result" %>
|
|
<% end %>
|
|
</p>
|
|
<div class="row">
|
|
<p class="chat-bubble col-xs-4">
|
|
<%= highlight comment.message, @search_query.strip.split(/\s+/) %>
|
|
</p>
|
|
</div>
|
|
<p>
|
|
<span>
|
|
<%=t "search.index.created_by" %>
|
|
<%= highlight comment.user.full_name, @search_query.strip.split(/\s+/) %>
|
|
</span>
|
|
<br>
|
|
<span>
|
|
<%=t "search.index.created_at" %>
|
|
<%=l comment.created_at, format: :full %>
|
|
</span>
|
|
<br>
|
|
</p>
|
|
|
|
<p>
|
|
<% if comment.project_comment.present? %>
|
|
<span>
|
|
<%=t "search.index.project" %>
|
|
<%= render partial: "search/results/partials/project_text.html.erb",
|
|
locals: { project: comment.project_comment.project, link_to_page: :root } %>
|
|
</span>
|
|
<% elsif comment.my_module_comment.present? %>
|
|
<span>
|
|
<%=t "search.index.module" %>
|
|
<%= render partial: "search/results/partials/my_module_text.html.erb",
|
|
locals: { my_module: comment.my_module_comment.my_module, link_to_page: :canvas } %>
|
|
</span>
|
|
<% elsif comment.step_comment.present? %>
|
|
<span>
|
|
<%=t "search.index.step" %>
|
|
<%= render partial: "search/results/partials/step_text.html.erb", locals: { step: comment.step_comment.step, target: :comment } %>
|
|
</span>
|
|
<% elsif comment.result_comment.present? %>
|
|
<span>
|
|
<%=t "search.index.result" %>
|
|
<%= render partial: "search/results/partials/result_text.html.erb", locals: { result: comment.result_comment.result, target: :comment } %>
|
|
</span>
|
|
<% end %>
|
|
</p>
|
|
|
|
<hr>
|
|
<% end %> |