Files
growstuff/app/views/posts/_comments.html.haml
2013-04-29 21:44:30 +01:00

12 lines
230 B
Plaintext

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