I'm trying to render a collection of comments on Rails 3.1, but only the first comment on the collection is shown on the webpage (comments are associated to a thought).
First, the comments-controller:
def index
@comments = Comment.find_by_thought_id(params[:thought_id])
respond_to do |format|
format.html
format.js
end
end
Then, the view index.js.erb
$("#thought_<%= params[:thought_id] %>").append("<%= escape_javascript(render'index') %>").effect("highlight", {}, 3000);
I'm rendering index, so now to _index.html.erb
<div id="comments_<%= params[:thought_id] %>">
<%= render @comments %>
</div>
And finally the _comment.html.erb
<%= div_for comment do %>
Posted <%=time_ago_in_words(comment.created_at)%> ago<br />
<%= link_to 'Delete', comment_path(comment), :method => :delete, :class => "delete", :remote => true %>
<%= content_tag(:p, comment.description, :class => "comment-body") %>
<% end %>
Why is Rails only giving me back one comment?
Thanks in advance