I currently have the following for-loop. This is in the ‘view/vendor/show.html‘.
I set up a ‘vendor :has_many :reviews‘ and this is the for-loop:
<% for review in @vendor.reviews %> <%= review.user_id %> <%= review.summary %><br /> <%= link_to 'More', @review%> <hr class='left span-5' /> <% end %>
For the link_to I would like it to link to the URL: reviews/:review_id
thanks!
1 Answer