Customizing Ruby on Rails Forms

Customizing Forms

Forms are an important part of any web application because they are how the user interacts with the app. Creating forms that are easy to use is simple to do with Ruby on Rails when you use the built-in tools and some other popular tools built for Rails.

Extra Credit

Sort users in the dropdown

Try using the order method on the model finders to order the users in the dropdown by name.

Make yourself the default

The collection select will preselect the correct option if there is already a value defined. Update the code so that the dropdown always defaults to the current user.