Generate correct links to diary entries

This commit is contained in:
Tom Hughes 2012-02-28 22:58:12 +00:00
parent c9a4ec5e63
commit 13adca0a8f

View file

@ -9,7 +9,7 @@
<% @comments.each do |comment| -%>
<% cl = cycle('table0', 'table1') %>
<tr class="<%= cl %>">
<td><%= link_to comment.diary_entry.title, :action => :view, :display_name => comment.diary_entry.user, :id => comment.diary_entry.id %></td>
<td><%= link_to comment.diary_entry.title, :action => :view, :display_name => comment.diary_entry.user.display_name, :id => comment.diary_entry.id %></td>
<td><span title="<%= l comment.created_at, :format => :friendly %>"><%= t 'diary_entry.comments.ago', :ago => time_ago_in_words(comment.created_at) %></span></td>
<td><%= htmlize(comment.body) %></td>
</tr>