This is a partner exercise.
With your partner, discuss the following questions:
- How can we write a single route handler that dynamically handles each of the bachelorette's profile pages.
- Example usage: if a GET request is made to "/bachelorettes/alissa", the user should see the information for Alissa, while if a GET request is made to "/bachelorettes/nicole", the user should see the information for Nicole.
- Do we need to create a new erb file, or can we reuse an existing template?
- What logical steps will the code need to take to find the information for a particular bachelorette, based on her name? (ie, how will you find the info for the bachelorette named Samantha when a GET request is made to "/bachelorettes/samantha" ?