one-to-many through scaffolding?

I'm working on my first one-to-many. Through scaffolds I have CRUD interfaces for the "feeds" and "items" tables. I have everything configured for a one-to-many O/R mapping, to my knowledge.

Is there a scaffold command I can run to create a CRUD interface with both "feeds" and "items" on the same interface?

All the code is hosted at the google repository, it can be browsed. Here are some specific links for some code (rather than posting it):

entry point: http://strawr.googlecode.com/svn/trunk/

specific files: http://strawr.googlecode.com/svn/trunk/app/controllers/feeds_controller.rb http://strawr.googlecode.com/svn/trunk/app/controllers/items_controller.rb http://strawr.googlecode.com/svn/trunk/app/models/feed.rb http://strawr.googlecode.com/svn/trunk/app/models/item.rb http://strawr.googlecode.com/svn/trunk/db/migrate/001_feeds.rb http://strawr.googlecode.com/svn/trunk/db/migrate/003_items.rb

thanks,

Thufir

Do you mean the views will automatically show what the ActiveRecord model relationships are through the code generated?

<% for column in Feed.content_columns %> <p>   <b><%= column.human_name %>:</b> <%=h @feed.send(column.name) %> </p> <% end %>

<%= link_to 'Edit', :action => 'edit', :id => @feed %> | <%= link_to 'Back', :action => 'list' %>

http://strawr.googlecode.com/svn/trunk/app/views/feeds/show.rhtml

I think that I need to edit this file so that the list of feeds will include the items?

-Thufir

Maybe not automatically, but, yes, down the road, that's what I want :slight_smile:

Given: http://strawr.googlecode.com/svn/trunk/app/views/feeds/list.rhtml

Can I at least tweak this (generated) file so that *all* the fields are displayed when feeds is listed? I changing:

<% for column in Feed.content_columns %>

to:

<% for column in Feed.content %>

but that didn't have any visible effect :frowning:

Of course I'll be hitting google, but...

If I can at least get those primary keys visible that will be progress!

thanks,

Thufir