Django Masterclass : Build 6 Real World Django Projects
- Offered byUDEMY
Django Masterclass : Build 6 Real World Django Projects at UDEMY Overview
Duration | 24 hours |
Total fee | ₹3,499 |
Mode of learning | Online |
Credential | Certificate |
Django Masterclass : Build 6 Real World Django Projects at UDEMY Highlights
- Earn a certificate of completion from Udemy
- Learn from 21 articles + resources
- Get full lifetime access of the course material
- Comes with 30 days money back guarantee
Django Masterclass : Build 6 Real World Django Projects at UDEMY Course details
- For Beginner level Python developers or students who want to build real world projects / web applications using Django
- Learn Django From Scratch & Gain Essential Skills To Apply For Junior Django Developer Positions
- Learn Django Right From the Basics Like Creating A Django Project, Understanding Models, Making Migrations, Running Django Application On Local Server
- Learn How To Build Web Applications Using Django & Python
- Learn How To Perform Authentication & Authorisation in Your Django Web Applications
- Build A Full-Fledged E-commerce App With Add To Cart & Checkout Functionality, Utilise Local Storage To Save Cart Data
- Build A Dynamic Web Based Crawler Using Django To Crawl Webpage Links
- The course will teach you Django, right from scratch from a very basic level and will gradually move towards advanced topics like authentication
- In this hands-on course, you will learn how to build complex web applications from scratch using Django
- In this section we will learn what Django is and why it is used. We will also install the tools you will need to start making Django web apps
- In this section we will learn about setting up the Django project, using the development server
- We learn about what the MVT (model-view-template) architecture by starting off by creating views in Django, we will also learn what URL patters are and how they help us to setup routes for our website
- This section will teach you how to use static content in your site such as static images, JavaScript etc and how to use these static elements to style up your web-page
Django Masterclass : Build 6 Real World Django Projects at UDEMY Curriculum
Course Introduction
Course Introduction
Introduction to Django
Downloading & Installing Required Software
Installing Python on windows
Installing Python on Mac
Installing Django on Windows
Installing Django on Mac
Installing VS Code
Project 1: Food Menu App : Setting up a Django Project
Project Overview: What we will build
How to create and setup Django project
Running Our App On Development Server
Views & URL Patterns in Django
How Views Work In Django
Views In Django: Implementation
URL Patterns
How Django URL Patterns Work Internally
Writing Another View
Database & Models in Django
Introduction To Database & Models
Database & Models
How Data Storage Works In Django
Using The Interactive Shell
Django Admin Panel & Creating Super User
How Data Retrieval Works In Django
Reading Data From Database
Templates
Django Templates
Passing Context To Templates
Why We Need Templates
Creating The Detail View
Completing The Detail View
Django Template Language
Removing Hardcoded URLs
Namespacing
Static Files & Site Design
Static Files
Load static replace with just static as load static is depricated
More About Static Files
Creating Navbar
Creating Base Template
Adding Image Field To Model
Adding Actual Images
Designing The Detail View
Forms in Django
Adding Form To Add Items
Adding Base Template To Form
Implementing The Edit Functionality
Implementing Delete Functionality