Django Notes
Django Notes
So now we have created a project, but we are building our django app
Hence we have to create it
Our app will be created with the appName with following files
Now that our app is created we need to configure, i.e add our appname in installed
app of settings.py so that Django server will know that appName is connected with
our Project
NOTE: -> Always create functions in views.py and use the urls.py to
route to those functions.
Create a folder names "templates" with exact same spelling, create a folder
with your appname and store the html pages in it