> Ok, first, i can speak spanish, so i'll write back in spanish, if that
> makes it any easier for you.

ok, now I DON'T, so if i post anything you already said: i'm sorry.

your method missing comes from this line:
  @[email protected](params[:pregunta_id])

find is not defined on instances.
try something like:
  @pregunta=Pregunta.find(params[:pregunta_id])

or if there is a relation between those models maybe
  @[email protected](params[:pregunta_id])
or just
  @[email protected]
that depends on the type of their relationship.


--~--~---------~--~----~------------~-------~--~----~
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 [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to