The MVT is an design pattern that separates an application into three main logical components Model, View, and Template.
The Model responsible to handle database. It is a data access layer which handles the data.
The user can send request by interacting with template, the view handles these requests and sends to Model then get appropriate response from the Model, sends response to template.
It represents how data should be presented to the application user. User can read or write the data from template.
Basically it is responsible for showing end user content, we can say it is user interface. It may consists of HTML, CSS, JS mixed with Django Template Language.