Admin - Django Web Development with Python 9

In this 9th Django web development with Python tutorial, we’re going to cover the admin page, along with adding some blog posts to our application. Just when you thought you’ve seen most of the backend magic that Django has to offer, there’s more! The Django admin site/app is pretty incredible. This is your Admin Control Panel, and it’s already done. Just like Django handles your database work with the , your Admin page is going to work very much in the same way. To access the admin page, you visit
Back to Top