So I have this select tag pulling a collection of pages for the user to choose from:
<%= f.select(:read_more, Page.all.collect{|page| [page.title, page.section.name.to_s+"/"+page.slug.to_s]}, {:include_blank => false}) %>
But I also want to add a second collection, bio’s to the same select box. Is that possible?
Just sum it
So,