Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialJakub Farobek
1,959 PointsIs a Django View the same as Views in the MVC pattern?
So Love said that in Django, they call Controllers (see MVC) Views. Isn't that confusing? Will this be a headache if I ever want to learn web development in Rails or any other language?
Thanks, Love!
1 Answer
Chris Freeman
Treehouse Moderator 68,441 PointsYes Django-Views are can be considered MVC-Controllers. Instead of MVC, Django uses an "MTV" organization: Model, Template, View. It's just terminology. Here is a longer post from Django Docs.
Jakub Farobek
1,959 PointsJakub Farobek
1,959 PointsI see that it is just terminology but it confuses newbies if there are two similar terminologies where the meanings of the same words are different. :) Especially, if you are also learning stuff like AngularJS.