Comment on Django 1.8 releasedparentComments−sdrothrock11yIt's a MVC (Model-View-Controller) web framework made in Python that works with a number of different kinds of databases.Check out the models overview to get a feel for how powerful and simple it can be to use: https://docs.djangoproject.com/en/1.8/topics/db/models/−tbatterii11yActually a MTV framework https://docs.djangoproject.com/en/1.8/faq/general/#django-ap...−sonthonax11yStrictly speaking it's a MTV framework (like all traditional web frameworks really).But half the time people use it as a MVC framework where URL's act as the final link back to the model.
Comments
It's a MVC (Model-View-Controller) web framework made in Python that works with a number of different kinds of databases.
Check out the models overview to get a feel for how powerful and simple it can be to use: https://docs.djangoproject.com/en/1.8/topics/db/models/
Actually a MTV framework https://docs.djangoproject.com/en/1.8/faq/general/#django-ap...
Strictly speaking it's a MTV framework (like all traditional web frameworks really).
But half the time people use it as a MVC framework where URL's act as the final link back to the model.