Don’t repeat yourself (DRY) principle. Repetition might be good to emphasize a point, but when it comes to web development, it just leads to additional and time consuming work.
Read moreWhat is the architecture of Django?
Django is based on MVT (Model-View-Template) architecture . MVT is a software design pattern for developing a web application. View: The View is the user interface — what you see in your browser when you render a website. It is represented by HTML/CSS/Javascript and Jinja files.
Read more