I have two models, Player and Team. Player belongs_to team, however, team does not have_many players because I am not concerned with having a list of the team's players. I am only making the association so that I can update a team's fields once (e.g. it's week_one_opponent) and have it pull to all of the players on that team.
My question is, from the player's new or edit forms, how can I set the player's team by providing the Team's name to the form? E.g. if player is 'Trent Richardson', who just got traded from the Browns to the Colts, I want to be able to go to his 'Edit' page and change the team field from 'Browns' to 'Colts'.
Thanks