Hello,

Let say, i have an association between a project and a task.
A project has_many taks and a task belongs_to a project.
My model is working great.
I can create tasks from project and so on but my problem comes when i
want to add a button on the project index view to add task to a
project.

What i want is something like that
(project index view)

Project 1 Show, edit, destroy, add_task
Project 2 Show, edit, destroy, add_task

So that when i click add_task of project1 i'm redirected to a new task
form to create a task for that project.

i've added <%= link_to 'add_task', new_task_path(:project_id =>
project) %> in the project index view

so when i click on add_task, it redirects me to /task/new?project_id=1

but when i submit the task, the task is not linked to the project.
How can i get the project_id?

Does anyone has a tutorial or an example of how should i do?

Thanks,

jeff

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to