Say I have two form_tag 's on a page, each like this:
= form_tag({:action => :import}, :multipart => true) do
= file_field_tag 'file'
= submit_tag 'Import', name: 'import_this'
So I know how that comes through in params but If I had two forms and each form had same name fields, how can I sort of namespace them in the resulting params array and how would I access them?