I have 2 tables ( members and pics ), and I just made a inner join
and now when I send a call to the image in the view, it does not send me the url of the image anymore.
Before the join
it showed the data like this.
%p=pic.member.username
=image_tag pic.image.url(:thumb)
... and after the join
I show them that way.
%p=pic.username
=image_tag ?
... and in the image I do not understand how to compose it, because if I put it as the example of before, it makes me a lot of questions.
How to get the url from the image after join
?