Skip to content
Django
3. Django Concepts

Django Concepts

How Website Works

  • When you request a website by opening a link in browser, It request the IP address from DNS server and fetch the HTML, CSS and JS markup and show that web page on your browser.

DNS Server :

TCP IP :

MVT Structure

  • PHP - Laravel is based on MVC (Model view Controller).
  • The MVT (Model View Template) is a software design pattern.
  • Model: Model is going to act as the interface of your data.
  • View: The view is the user interface - what you can see in your browser when you render a website.
  • Template: A template consists of static parts of the desired HTML output as some special syntax describing how dynamic content will be inserted.

MVT

Additionals

Hi, we are going to learn how to build a full feature web application using django framework in python. Django is very popular framework that gives us a lots of functionality right of the box and makes very enjoyable to work with these web applications.