I have these two models:
user:
has_many :commercials, :dependent => :destroy, :inverse_of => :user
commercial:
belongs_to :user, :inverse_of => :commercials
has_attached_file :image,
:styles => { :medium => "400x400",
:thumb => "50x50>" }
I just uploaded one image, the image is successfully uploaded to Amazon S3 and saved into the database. But how to display it?
I tried:
<%= image_tag @user.adverts(:medium) %>
or
<%= image_tag @user.adverts.medium.url %>
But none of above is working...