How does Django architecture work?

Django is based on MVT (Model-View-Template) architecture . MVT is a software design pattern for developing a web application. View: The View is the user interface — what you see in your browser when you render a website. It is represented by HTML/CSS/Javascript and Jinja files.

Read more