Django MVC Pattern

Learn how Django follows the Model-View-Controller (MVC) framework.

We'll cover the following...

Django is a web framework which is also known as a Model-View-Controller (MVC) framework. Django follows the MVC pattern, but there is a slight change when it comes to these concepts. We’ll briefly discuss the most important parts of the Django MVC pattern.

Models

Django uses ...