In this lesson, you’ll walk through the flow of a request through a Django app. You’re going to see what happens when you type an address into your web browser and press Enter.
The first address point inside the Django app is the urls.py
in the management app. That file will direct you towards the urls.py
in the app you want to go to. That will forward you to views.py
, where the code logic happens. The functions in there will direct you towards a specific template to render and return to the user to see in the browser.
lewiuberg on Jan. 9, 2020
Hi! Just wondering, is this the MVC pattern in action? Trying to connect the dots :)