I have this in my form:
= f.input :location_id, :collection => @locations, :include_blank => false, :selected => @video.location
This works fine for my "new" view/action and I see a nice list of locations to choose from.
However when in my edit view, instead of seeing the list of locations, I just see an input field as if it is a string, like so:
Location: 4ebbc0f8e0ed180e91000002
Any ideas why I don't see my collection?
EDIT:
Figured it out, I had to do:
= f.input :location_id, :collection => @locations, :include_blank => false, :selected => @video.location.id
Also, I forgot to pass @locations in my edit controller, woops :)