mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-02-05 15:11:01 -05:00
12 lines
250 B
Plaintext
12 lines
250 B
Plaintext
%a{:name => "comments"}
|
|
- if post.comments
|
|
%h2
|
|
=localize_plural(post.comments, Comment)
|
|
- post.comments.post_order.each do |c|
|
|
= render :partial => "comments/single", :locals => { :comment => c }
|
|
|
|
- else
|
|
%h2 There are no comments yet
|
|
|
|
|