]> git.openstreetmap.org Git - rails.git/blob - app/views/diary_entries/comments.html.erb
2ffce6ff6d2817e995cbde2d3dc76d1c0e8bb06a
[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_path(@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? %>"><span title="<%= l comment.created_at, :format => :friendly %>"><%= time_ago_in_words(comment.created_at, :scope => :"datetime.distance_in_words_ago") %></span></td>
22       <td width="50%" class="richtext text-break<%= " text-muted" unless comment.visible? %>"><%= comment.body.to_html %></td>
23     </tr>
24     <% end -%>
25   </table>
26
27   <nav>
28     <ul class="pagination">
29       <% if @older_comments -%>
30         <li class="page-item">
31           <%= link_to t(".older_comments"), @params.merge(:before => @comments.last.id), :class => "page-link" %>
32         </li>
33       <% else -%>
34         <li class="page-item disabled">
35           <span class="page-link"><%= t(".older_comments") %></span>
36         </li>
37       <% end -%>
38
39       <% if @newer_comments -%>
40         <li class="page-item">
41           <%= link_to t(".newer_comments"), @params.merge(:after => @comments.first.id), :class => "page-link" %>
42         </li>
43       <% else -%>
44         <li class="page-item disabled">
45           <span class="page-link"><%= t(".newer_comments") %></span>
46         </li>
47       <% end -%>
48     </ul>
49   </nav>
50 <% end -%>