> Hi Tim,
> I implemented your changes. Unfortunately, I still got the same error. I
> copied both the User and Jobs models, as well as the schema.rb file.
>
> Please let me know your thoughts.
>
> http://pastie.org/1116870

You have a minor typo in index.html.erb

    <% unless @user.jobs == nil %>
      <% @user.jobs each do |job| %>
        <%= job.Title %>
      <% end %>
    <% end %>

You want `...@user.jobs.each`  not `...@user.jobs each`.  Note the missing
dot between "jobs" and "each".

-- 
med vänlig hälsning
David J. Hamilton

-- 
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-t...@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to