

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Model View Template or MVT pattern
Typology: Essays (high school)
1 / 2
This page cannot be seen from the preview
Don't miss anything!


Django follows MVC pattern very closely but it uses slightly different terminology. The main difference between two pattern is MVT takes care of the controller itself. The MVT (Model View Template) is a software design pattern. It is a collection of three important components Model View and Template. Model : ( Django models ) The Model helps to handle database. Template : ( Django html pages ) Templates handles User Interface. View : ( Django Controller ) The View is used to execute the business logic and interact with a model to carry data and it renders a template.