/CodingDojo_PythonStack

Coding Dojo Python Stack Projects/ Assignments

Primary LanguagePython

CodingDojo_PythonStack

Coding Dojo Python Stack Projects/ Assignments Complete each of the following routes: /shows/new- GET - method should return a template containing the form for adding a new TV show Assignment Name : Semi Restful TV shows App ----- >Adding/Updating/Display/Deleting new TV shows /shows/create - POST - method should add the show to the database, then redirect to /shows/
/shows/ - GET - method should return a template that displays the specific show's information
/shows - GET - method should return a template that displays all the shows in a table
/shows//edit - GET - method should return a template that displays a form for editing the TV show with the id specified in the url
/shows//update - POST - method should update the specific show in the database, then redirect to /shows/
/shows//destroy - POST - method should delete the show with the specified id from the database, then redirect to /shows
Have your root route redirect to /shows