I’m wondering why people think that Django uses the MVC , or rather which design pattern does Django really use? For example, in the ROR pattern of the MVC pattern, the model, the view and the controller are clearly felt. But in Django controller for me somehow spreads. I understand that the controller is responsible for manipulating the presentation depending on user input and not only, so maybe the controller of Django is the template logic? What is the controller in Django ?

0