diff options
author | King | 2017-05-21 11:56:06 +0530 |
---|---|---|
committer | GitHub | 2017-05-21 11:56:06 +0530 |
commit | 984022a96ab76bafb3419eac2475ad1384798570 (patch) | |
tree | 33086724752df55919deacad9164b0d5d18107ef | |
parent | ec25525da6aab2be565d033719f9fa280c2eb1b4 (diff) | |
download | learn_django-984022a96ab76bafb3419eac2475ad1384798570.tar.gz learn_django-984022a96ab76bafb3419eac2475ad1384798570.tar.bz2 learn_django-984022a96ab76bafb3419eac2475ad1384798570.zip |
moved web application framework slides here
-rw-r--r-- | tutorial_3_django_models/slides.md | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tutorial_3_django_models/slides.md b/tutorial_3_django_models/slides.md index 6c4e51a..e6321fc 100644 --- a/tutorial_3_django_models/slides.md +++ b/tutorial_3_django_models/slides.md @@ -167,6 +167,35 @@ Demonstration: Add an Article database entry [00:45| 09:57] - Click on Save - You will see your new article in the list - You can click on the article name to view it's details + + +So this is a web application framework. +Slide 6 [00:30 | 10:27] +---------------- + +**What is a web application** + + +** Narration for this slide ** + - An application stored on a remote computer i.e. server + - A server can be accessed by a user through a web browser + - The browser communicates with the server by sending a 'request' + - The web application carries out actions as per the request + - It has a 'database' to store and manipulate data + - It sends a 'response' to the user + - The user's browser then displays this response suitably formatted. + +Slide 7 [00:13 | 10:40] +------------------ + +**What is a web Framework** + - Easy to develop web apps + - Provides + - Interface to Database + - Authentication (Login system) + - Templating engine (HTML rendering) + - Forms + *** With this we come to the end of the tutorial*** |