How do I use Rails to create a drop-down selection box? Say if I have done the query:
@roles = Role.all
Then how do I display a box with all the @roles.name's ?
EDIT: After implementing the dropdown box. How do I make it respond to selections? Should I make a form?