Reputation: 13548
This is the image:
<%= image_tag comment.user.profile.photo.url(:tiny) %>
and here is the link path:
comment.user.profile
Now how do I combine these two?
Upvotes: 1
Views: 2029
Reputation: 28554
<%= link_to image_tag(comment.user.profile.photo.url(:tiny)), comment.user.profile %>
Upvotes: 8