]> git.openstreetmap.org Git - rails.git/blob - app/views/diary_entries/comments.html.erb
Merge remote-tracking branch 'upstream/pull/4717'
[rails.git] / app / views / diary_entries / comments.html.erb
1 <% content_for :heading do %>
2   <h1><%= t ".heading", :user => @user.display_name %></h1>
3   <p><%= t ".subheading_html", :user => link_to(@user.display_name, @user) %></p>
4 <% end %>
5
6 <% if @comments.empty? %>
7   <h4><%= t ".no_comments" %></h4>
8
9 <% else %>
10   <table class="table table-striped" width="100%">
11     <thead>
12       <tr>
13         <th width="25%"><%= t ".post" %></th>
14         <th width="25%"><%= t ".when" %></th>
15         <th width="50%"><%= t ".comment" %></th>
16       </tr>
17     </thead>
18     <% @comments.each do |comment| -%>
19     <tr>
20       <td width="25%" class="<%= "text-muted" unless comment.visible? %>"><%= link_to comment.diary_entry.title, diary_entry_path(comment.diary_entry.user, comment.diary_entry) %></td>
21       <td width="25%" class="<%= "text-muted" unless comment.visible? %>">
22         <%= friendly_date_ago(comment.created_at) %>
23       </td>
24       <td width="50%" class="richtext text-break<%= " text-muted" unless comment.visible? %>"><%= comment.body.to_html %></td>
25     </tr>
26     <% end -%>
27   </table>
28
29   <%= render "shared/pagination",
30              :newer_key => "diary_entries.comments.newer_comments",
31              :older_key => "diary_entries.comments.older_comments",
32              :newer_id => @newer_comments_id,
33              :older_id => @older_comments_id %>
34 <% end -%>