something what should really be easy and I can't get it to work... I have a Relation which has_many Contacts and Contact belongs_to Relation. Now I want to show the relation name in the contact index view. In the contacts controller I have this:
@contacts = Contact.paginate :page => params[:page],
:include => :relations,
:per_page => 10,
:order => "last_name"
Now I expect in the index view to be able to use this:
<%= contact.relation.name %>
But it returns a undefined method "name" for nil:NilClass error? Thanks for your help!