Ok. I've got a model Picture
class Picture < ActiveRecord::Base
has_one :rating
has_many :comments
end
And, of course Rating model
class Rating < ActiveRecord::Base
belongs_to :picture
end
I made rating system by myself. So, now on the frontpage I need to display all photos by rating. Please, can u show me how to do that. I've no idea what will be in index.html.erb of main controller.