Hi, i have this: class User < ActiveRecord::Base has_many :transfers has_many :camelids, :through => :transfers end class Camelid < ActiveRecord::Base has_many :transfers has_many :users, :through => :transfers end class Transfer < ActiveRecord::Base belongs_to :user belongs_to :camelid end how can i show a field from transfers in my view?? in the controler: @camelids = User.find(current_user.id, :conditions => ["transfers.actual_owner=1"],:include=>[:camelids, :transfers]).camelids in the view camelid.transfers.transfer_at ??? but is shows an error : undefined method `transfer_at'' for Transfer:Class -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---