Explain MVT architecture in Django
MVT stands for model, view and template. Here M represent model part and in this part we keep all the database related code and interactions. V represent view part, It contains complete project's business logic. views also works as a mediator between models and templates. T represent template part, it contains views. These are HTML files which used to create user interfaces.