Rails: Multiple dropdown menus collection_select
问题 Super Rails n00b here: Currently I have a form with the following code: <%= f.collection_select :account_ids, @accounts, :id, :name, include_blank: true %> and it currently works how I want it to but now I would like to have multiple drop down menus so I can select multiple accounts. I do not want the multiple select to be on the same dropdown. If I do this: <%= f.collection_select :account_ids, @accounts, :id, :name, include_blank: true %> <%= f.collection_select :account_ids, @accounts, :id