Re: Comparison of django MTV and MVC architecture

2016-04-17 Thread Scot Hacker
The Django docs have an FAQ on this topic: https://docs.djangoproject.com/en/1.9/faq/general/#django-appears-to-be-a-mvc-framework-but-you-call-the-controller-the-view-and-the-view-the-template-how-come-you-don-t-use-the-standard-names "Where does the “controller” fit in, then? In Django’s case,

Re: Comparison of django MTV and MVC architecture

2016-04-17 Thread Avraham Serour
I have no idea what rails does with his life, but you can still understand django under the MVC pattern: models are models, what django calls view is the controller and the template is the view. On Sat, Apr 16, 2016 at 4:10 PM, Mukul Chakravarty wrote: > Can we say that