![django architecture django architecture,django architecture diagram](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj4VV27Q0AZtWI1TrQg7_xgDGd03Ll-xWV_CVZkohWB7EgWWmYXbs4lAjAjQdARGGzltdmuIswLGPSzUZwAoqZXvglHY15JSlBHbtQGraF1A9985yJSsJqerGVyJ3-W2jpw9YLiWXjEvtw/w400-h267/1652790909381237-0.png)
django architecture
![django architecture django architecture,django architecture diagram](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj4VV27Q0AZtWI1TrQg7_xgDGd03Ll-xWV_CVZkohWB7EgWWmYXbs4lAjAjQdARGGzltdmuIswLGPSzUZwAoqZXvglHY15JSlBHbtQGraF1A9985yJSsJqerGVyJ3-W2jpw9YLiWXjEvtw/w400-h267/1652790909381237-0.png)
Django architecture
Django is based on MVT (Model-View-Template) architecture.
MVT mean's
Model
Model is going to act as the interface of your data.
It is responsible for maintaining data.
It is the logical data structure behind the entire application and is represented by a database (generally relational databases such as MySql, Postgres etc)
View
The View is the user interface
what you look in your browser when you render a website.
It is represented by HTML/CSS/Javascript
Template
A template relates to the View in the MVC pattern