November 2015
Beginner to intermediate
840 pages
26h 30m
English
The view is where webpage data is generated. The developer uses the view to interact with the database, load and render the template, and perform any other logic necessary to displaying a webpage.
A Django view is any Python callable (function, class, or object) that meets the following two requirements:
Accepts an HttpRequest object as argument
Returns an HttpResponse object
An HttpRequest object contains all of the information about the page requested, any data the user is passing to the website, and any data the browser is ...
Read now
Unlock full access