]> git.openstreetmap.org Git - rails.git/blob - app/views/diary_entries/comments.html.erb
Merge remote-tracking branch 'upstream/pull/3029'
[rails.git] / app / views / diary_entries / comments.html.erb
1 <% content_for :heading do %>
2   <h1><%= t(".has_commented_on", :display_name => @user.display_name) %></h1>
3 <% end %>
4
5 <% if @comments.empty? %>
6   <h4><%= t ".no_comments" %></h4>
7
8 <% else %>
9   <table class="table table-striped" width="100%">
10     <thead>
11       <tr>
12         <th width="25%"><%= t ".post" %></th>
13         <th width="25%"><%= t ".when" %></th>
14         <th width="50%"><%= t ".comment" %></th>
15       </tr>
16     </thead>
17     <% @comments.each do |comment| -%>
18     <tr class="<%= "text-muted" unless comment.visible? %>">
19       <td width="25%"><%= link_to comment.diary_entry.title, diary_entry_path(comment.diary_entry.user, comment.diary_entry) %></td>
20       <td width="25%"><span title="<%= l comment.created_at, :format => :friendly %>"><%= time_ago_in_words(comment.created_at, :scope => :'datetime.distance_in_words_ago') %></span></td>
21       <td width="50%" class="richtext text-break"><%= comment.body.to_html %></td>
22     </tr>
23     <% end -%>
24   </table>
25
26   <div class='secondary-actions clearfix'>
27     <span><%= link_to t(".older_comments"), :page => @comment_pages.current.next if @comment_pages.current.next %>
28     <%= link_to t(".newer_comments"), :page => @comment_pages.current.previous if @comment_pages.current.previous %></span>
29   </div>
30
31 <% end -%>