]> git.openstreetmap.org Git - rails.git/blob - app/views/diary_entries/_diary_comment.html.erb
Allow moderators to hide diary entries and comments
[rails.git] / app / views / diary_entries / _diary_comment.html.erb
1 <div class="clearfix diary-comment">
2   <%= user_thumbnail diary_comment.user %>
3   <p class="deemphasize comment-heading" id="comment<%= diary_comment.id %>"><%= raw(t(".comment_from", :link_user => (link_to h(diary_comment.user.display_name), user_path(diary_comment.user)), :comment_created_at => link_to(l(diary_comment.created_at, :format => :friendly), :anchor => "comment#{diary_comment.id}"))) %>
4     <% if current_user and diary_comment.user.id != current_user.id %>
5       | <%= report_link(t(".report"), diary_comment) %>
6     <% end %>
7   </p>
8
9   <div class="richtext"><%= diary_comment.body.to_html %></div>
10   <% if can? :hidecomment, DiaryEntry %>
11     <span>
12       <%= link_to t(".hide_link"), hide_diary_comment_path(:display_name => diary_comment.diary_entry.user.display_name, :id => diary_comment.diary_entry.id, :comment => diary_comment.id), :method => :post, :data => { :confirm => t(".confirm") } %>
13     </span>
14   <% end %>
15 </div>