I have a drop down like this on my page:
<p>
<%= f.label :episode_id %><br />
<%= f.collection_select(:episode_id, @episodes, :id, :show) %>
</p>
An episode has an id and belongs_to
to a show which has a name. In the dropdown, I'd like to display the show name. :show.name
doesn't work to display the name. How do I do this?