Django Tutorial, Django 3

Introduction

Django is a free and open-source framework based on python programming language to develop web applications.

The architecture of Django is Model-Template-View (MTV).

The model layer relates to the logical database structure.

The view layer is for data formatting and the template layer is the presentation layer.

This tutorial series shows you how to use Django to create a simple web application. The following image shows the application that we will create.

Critical