1 <% content_for :heading do %>
2 <h1><%= t(".has_commented_on", :display_name => @user.display_name) %></h1>
5 <table class="table table-striped" width="100%">
8 <th width="25%"><%= t ".post" %></th>
9 <th width="25%"><%= t ".when" %></th>
10 <th width="50%"><%= t ".comment" %></th>
13 <% @comments.each do |comment| -%>
14 <tr class="<%= "deemphasize" unless comment.visible? %>">
15 <td width="25%"><%= link_to comment.diary_entry.title, diary_entry_path(comment.diary_entry.user, comment.diary_entry) %></td>
16 <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>
17 <td width="50%" class="richtext"><%= comment.body.to_html %></td>
22 <div class='secondary-actions clearfix'>
23 <span><%= link_to t(".older_comments"), :page => @comment_pages.current.next if @comment_pages.current.next %>
24 <%= link_to t(".newer_comments"), :page => @comment_pages.current.previous if @comment_pages.current.previous %></span>