mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-19 14:57:50 -05:00
12 lines
230 B
Plaintext
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
|
|
|
|
|