Let's say I have a Post
model which has many comments.
In the Posts#index
page where all posts are shown, I want to allow users to add their comments for specific posts (I know it doesn't make much sense, it's just as a general idea).
the "brute force" way would be to attach a form on each post
element but this smells bad.
I'm sure there are better options which I can't think of right now, so, appreciate the help.
Thanks, Roy
(P.S - a good example would be FB page in which a user can comment to each of the posts in the timeline and I guess it's not by having a form for each one...)