Hello, I have this object in a controller action. The controller is named "Translation"
def detail @house = House.find(:params[:id]) end the action loads a view, localhost/translation/detail <% form_for @house do |f| %> <%= f.text_area :descrizioneEng, :cols => 80, :rows => 6, %> [...] <%= f.submit "salva" %> <% end -%> the passed parameters are right, the db gets updated correctly, but then I get the localhost/houses/5 page loaded. I'd like to get translation/list instead... thanks! --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

