Topic: Select field values with two words
Is there a way to populate a select field with options that consist of two words without using an underscore?
This is what I've got and I'd like to go with 'adventure racing' and 'mountain biking' instead of 'adventure_racing' and 'mountain_biking'.
<%= select(:event, :event_type, %w{ Adventure_Racing Cycling Cyclocross Duathlon Marathon Mountain_Biking Running Triathlon Other }) %>