Example:
controller = hdlogs, model = hdlog | model # 2 = employee
------------------------------------------------------------------------------------------------
Form
------------------------------------------------------------------------------------------------
= simple_form_for @helplog do |f|
= f.input :tech, collection: [ "Level1", "Level2", "Level3" ]
= f.input :user, collection: Employee.all(order: 'first_name'), prompt: "Choose a user"
= f.button :submit
------------------------------------------------------------------------------------------------
I am trying to populate the select box w/ the employee names from the employee model
when user selects the name from the select box (dropdown) the form will be submitted to
the hdlog model. It is probably something so simple but it is driving me nuts...