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?

On Dec 8, 2007 7:30 PM, Thufir [email protected] wrote:

http://strawr.googlecode.com/svn/trunk/db/migrate/003_items.rb


Ramon T.

On Sat, 08 Dec 2007 11:30:25 +0000, Thufir wrote:

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?

<% for column in Feed.content_columns %>

<%= column.human_name %>: <%=h @feed.send(column.name) %>

<% 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

On Sat, 08 Dec 2007 20:05:08 +0800, Ramon Miguel M. Tayag wrote:

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

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