------ art_114817_25655024.1164419179934
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
you can do this:
<% ink_to "site notes", :action "list",
:id @site.id, # here will using @site.id
:controller 'site_notes' %>
and in the site_notes_controller.rb i have this
def list
@site ite.find(params[:id])
@site_notes site.site_notes # if you use has_many association you can
just write this
@site_note_pages, @site_notes aginate :site_notes, :per_page 10
end
2006/11/25, shawn bright <nephish / gmail.com>:
>
> On 11/24/06, shawn bright <nephish / gmail.com> wrote:
> >
> > ok, how ?
> >
> > On 11/24/06, Chris Carter <cdcarter / gmail.com> wrote:
> > >
> > > You need to do that by hand, sorry.
> > >
> > > On 11/24/06, shawn bright <nephish / gmail.com> wrote:
> > > >
> > > > hello there all,
> > > >
> > > > i am writing a website in rails, i love it, but i am banging my head
> > > here
> > > > .
> > > >
> > > > ok, i have a table called sites ( means customer sites )
> > > > each site has_many :site_notes
> > > > so, site_note belongs_to :site
> > > >
> > > > i used a scaffold to generate the site notes files. site notes work
> > > kinda
> > > > like comments to a blog.
> > > > a customer has sites and for each site, i want him to be able to
> post
> > > > notes
> > > > about what what his machines are doing.
> > > >
> > > > so, my link to the sites controller looks like this.
> > > > <% ink_to "site notes", :action "list",
> > > > :id @site,
> > > > :controller 'site_notes' %>
> > > >
> > > > and in the site_notes_controller.rb i have this
> > > > def list
> > > > @site ite.find(params[:id])
> > > > @site_notes iteNote.find(:all, :conditions ["site_id", @
> > > site.id
> > > > ])
> > > > @site_note_pages, @site_notes aginate :site_notes, :per_page
>