I am new to Rails 
I have a 3 table db ( I have set the relationships correctly):
place >--- county >--- region
and I wish to see in the places/index listing of all places the region as one of the columns, and not the region_id that is a filed in the county table. I can see the county (rather than an id) using: <%=h place.county.county %>, how do I jump through to another table using the county_id as the criteria to read back the region to the display?
I assume I need to get the correct region for a particular county but I am not sure how ... doh ... would this be in the place controller, or the county?
Cheers