Files
growstuff/app/views/posts/_comments.html.haml
Skud e17dcf8671 Reordered comments: they are now DESC by default
Added scope "post_order" to order them ASC for display on post page.
Also tweaked post/comment views a bit.
2013-05-24 14:36:58 +10:00

12 lines
253 B
Plaintext

%a{:name => "comments"}
- if post.comments
%h2
=pluralize(post.comments.length, "comment")
- post.comments.post_order.each do |c|
= render :partial => "comments/single", :locals => { :comment => c }
- else
%h2 There are no comments yet