Django | Architecture

 

django architecture,django architecture diagram
django architecture



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 



Post a Comment (0)
Previous Post Next Post