Thufir
(Thufir)
December 8, 2007, 11:30am
1
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
Ramon
(Ramon)
December 8, 2007, 12:05pm
2
Do you mean the views will automatically show what the ActiveRecord
model relationships are through the code generated?
Thufir
(Thufir)
December 8, 2007, 12:21pm
3
<% 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
Thufir
(Thufir)
December 8, 2007, 1:25pm
4
Maybe not automatically, but, yes, down the road, that's what I want
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
Of course I'll be hitting google, but...
If I can at least get those primary keys visible that will be progress!
thanks,
Thufir