Add a view to show diary comments left by a user

This commit is contained in:
Steve Singer 2012-02-25 15:46:11 -05:00 committed by Tom Hughes
parent e45f8855c4
commit 1944372af8
5 changed files with 51 additions and 0 deletions

View file

@ -0,0 +1,23 @@
<h1><%= @title%>
<%= t('diary_entry.comments.has_commented_on',:display_name => @this_user.display_name) %>
</h1>
<p>
<br>
<table id="comment-list-container">
<tr><th>Title</th><th>Date</th><th>Comment</th></tr>
<% for comment in @comments %>
<tr id="comment-row">
<td><a href="/user/<%= comment.diary_entry.user.display_name %>/diary/<%= comment.diary_entry.id %>"><%= comment.diary_entry.title %></a>
</td>
<td>
<span class="date"><%= comment.created_at %></span>
</td>
<td>
<%= htmlize(comment.body) %></td></tr>
<% end %>
</table>
<%= link_to t('diary_entry.comments.older_comments') , { :page => @comment_pages.current.next} if @comment_pages.current.next %>
<% if @comment_pages.current.next and @comment_pages.current.previous %>
|
<% end %>
<%= link_to t('diary_entry.comments.newer_comments'), { :page => @comment_pages.current.previous } if @comment_pages.current.previous %>