DJango is an open source MVC (or MTV) Web CMS written in Python, HTML, JS and CSS. It uses a urls file to interpret the incoming request, separating out the params from the action, eg /customer/1/delete would be interpreted as delete customer 1. The urls file links the request to a view function. This view function uses the model objects to modify the values in the database and then passes them onto a template. This template then displays them! The model objects are stored in a database and are defined using python. There is not really any need to knowRead more