- Workin on the Snapshot: Dubuging Moduel from the Guild curriculum https://github.com/LearnersGuild/curriculum/blob/master/Phases/Practice/Modules/Snapshot-Debugging/README.md
- Going to the Home Page should let you see all the contacts
- Going to a contact detail page should show the full name of the contact
- Adding a contact should add a new contact in the database, and redirect to the created contact
- Clicking on the Delete link for a contact should delete the contact
- Searching for a contact should list all the contacts which match the search string
- Create homepage route
- Create a database function that selects all contacts
- Create a function in the views that will list all contacts
- Create a function in the views to display each individual contact full information
- Create a database function that inserts a new contact in the database
- Create a post route that redirects a user to the contact details page when a new contact is created
- Create a delete database function that delets a contact when delete button is clicked
- Create a database function that selects all of the contacts that include the search string that the user inputs
In the "implementation section" I want you to explain a bit more about the user inputs. Let me know the lifecycle of the data that a user submits. But over all goodjob.