paginate blog comments; fix length/site on AR objects

This commit is contained in:
jomo
2014-09-22 06:29:24 +02:00
parent 15ca378878
commit e767ec729c
5 changed files with 7 additions and 5 deletions

View File

@@ -17,9 +17,10 @@
</div>
</div>
<div id="comments">
<h3><%= "#{pluralize(@post.comments.length, 'comment')}." %></h3>
<% @post.comments.each do |c| %>
<h3><%= "#{pluralize(@post.comments.size, 'comment')}." %></h3>
<% @comments.each do |c| %>
<%= render "comments/comment", c: c %>
<% end %>
<%= paginate @comments %>
<%= render "comments/new" %>
</div>