[Rails] Re: Listing elements from a table

2009-04-22 Thread Robert Walker
Stephen Fagan wrote: > >> >> Those are some of the things I can think of that should help you build >> your group show pages. Hope this gives you some ideas on how to proceed. > > Thanks a million. Thats helps me a great deal. Sometimes you cant see > the wood for the trees! Also don't forget

[Rails] Re: Listing elements from a table

2009-04-22 Thread Stephen Fagan
> > Those are some of the things I can think of that should help you build > your group show pages. Hope this gives you some ideas on how to proceed. Thanks a million. Thats helps me a great deal. Sometimes you cant see the wood for the trees! -- Posted via http://www.ruby-forum.com/. --~--~

[Rails] Re: Listing elements from a table

2009-04-22 Thread Robert Walker
Stephen Fagan wrote: > How would I define the members and groups in my controller to do this > and also how could I list them in my views? groups_controller.rb - def show @group = Group.find(params[:id]); ... ... end With groups you can get memberships: memberships = @group.mem