Justin Meltzer
Justin Meltzer

Reputation: 13548

How do I turn this image to a link?

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

Answers (1)

Chris Cherry
Chris Cherry

Reputation: 28554

<%= link_to image_tag(comment.user.profile.photo.url(:tiny)), comment.user.profile %>

Upvotes: 8

Related Questions