1 <div class="row diary-comment border-bottom py-3<%= " text-body-secondary bg-danger bg-opacity-10" unless diary_comment.visible? %>">
2 <div class="col-auto pe-0 text-center">
3 <%= user_thumbnail diary_comment.user %>
6 <p class="text-body-secondary m-0" id="comment<%= diary_comment.id %>"><%= t(".comment_from_html", :link_user => (link_to diary_comment.user.display_name, diary_comment.user), :comment_created_at => link_to(l(diary_comment.created_at, :format => :friendly), :anchor => "comment#{diary_comment.id}")) %>
7 <% if current_user and diary_comment.user.id != current_user.id %>
8 | <%= report_link(t(".report"), diary_comment) %>
12 <div class="richtext text-break"><%= diary_comment.body.to_html %></div>
13 <% if can? :hide, DiaryComment %>
15 <% if diary_comment.visible? %>
16 <%= link_to t(".hide_link"), hide_diary_comment_path(diary_comment), :method => :post, :data => { :confirm => t(".confirm") } %>
18 <%= link_to t(".unhide_link"), unhide_diary_comment_path(diary_comment), :method => :post, :data => { :confirm => t(".confirm") } %>