Displaying Models

Learn how to display your Django models on the admin page.

We'll cover the following...

Displaying the model

You learned how to populate the database in the previous lesson. Now you will see the populated databases in your Django Admin Page.

If you click on the The Authors link on your admin page, will it show the data in our Author database table, but it will only show the name of the author. What about the other fields, such as the creationDate or updatedDate?

To display them, you will have to create a new class ...