Before our changes to the form can take effect, we need to update the remaining portions of our application for the new functionality. Our main menu needs some navigation items so that users can switch between the record list and the form, and controller methods need to be created or updated in Application to bring together our new model and view functionality.
Updating the rest of the application
Main menu changes
Since we're already in the views.py file, let's start by updating our main menu view with some commands to switch between the record list and record form. We'll add a Go menu containing two more options to our menu that will allow switching between the record list and a blank record form.
Add the...