]> git.openstreetmap.org Git - rails.git/blob - app/views/diary_entries/_diary_comment.html.erb
Merge remote-tracking branch 'upstream/pull/4782'
[rails.git] / app / views / diary_entries / _diary_comment.html.erb
1 <div class="row diary-comment border-bottom py-3<%= " text-muted bg-danger bg-opacity-10" unless diary_comment.visible? %>">
2   <div class="col-auto pe-0 text-center">
3     <%= user_thumbnail diary_comment.user %>
4   </div>
5   <div class="col">
6     <p class="text-muted 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) %>
9       <% end %>
10     </p>
11
12     <div class="richtext text-break"><%= diary_comment.body.to_html %></div>
13     <% if can? :hidecomment, DiaryEntry %>
14       <span>
15         <% if diary_comment.visible? %>
16           <%= link_to t(".hide_link"), hide_diary_comment_path(diary_comment.diary_entry.user, diary_comment.diary_entry, diary_comment), :method => :post, :data => { :confirm => t(".confirm") } %>
17         <% else %>
18           <%= link_to t(".unhide_link"), unhide_diary_comment_path(diary_comment.diary_entry.user, diary_comment.diary_entry, diary_comment), :method => :post, :data => { :confirm => t(".confirm") } %>
19         <% end %>
20       </span>
21     <% end %>
22   </div>
23 </div>