Chapter-9 Creating A Django Based Basic Web Application
Chapter-9 Creating A Django Based Basic Web Application
The client (web browser) work on the web mostly with HTTP protocol.
The client make an HTTP request , which the (web) server responds to
in the form of a response called HTTP response.
Installing Django:
Creating Models : Models in Django refer to the way data is stored and
processed. The data model for an app is defined inside model.py file of
the app folder.
Creating views : Next, create views. Views receive the request in the
form of URL and provide response in form of templates.