1 <h1><%= t('diary_entry.comments.has_commented_on', :display_name => @this_user.display_name) %></h1>
5 <th><%= t 'diary_entry.comments.post' %></th>
6 <th><%= t 'diary_entry.comments.when' %></th>
7 <th><%= t 'diary_entry.comments.comment' %></th>
9 <% @comments.each do |comment| -%>
10 <% cl = cycle('table0', 'table1') %>
11 <tr class="<%= cl %>">
12 <td><%= link_to comment.diary_entry.title, :action => :view, :display_name => comment.diary_entry.user.display_name, :id => comment.diary_entry.id %></td>
13 <td><span title="<%= l comment.created_at, :format => :friendly %>"><%= t 'diary_entry.comments.ago', :ago => time_ago_in_words(comment.created_at) %></span></td>
14 <td><%= comment.body.to_html %></td>
19 <%= link_to t('diary_entry.comments.older_comments') , { :page => @comment_pages.current.next} if @comment_pages.current.next %>
20 <% if @comment_pages.current.next and @comment_pages.current.previous %>
23 <%= link_to t('diary_entry.comments.newer_comments'), { :page => @comment_pages.current.previous } if @comment_pages.current.previous %>