scinote-web/app/views/shared/comments/_comments_list.html.erb
2022-05-25 15:06:12 +02:00

8 lines
292 B
Plaintext

<% user= nil %>
<% comments.each do |comment| %>
<%= render partial: 'shared/comments/comment.html.erb',
locals: { comment: comment, skip_header: user == comment.user } %>
<% user = comment.user %>
<% end %>
<% comments.mark_as_seen_by(current_user) && @commentable.touch %>