The Ultimate Django Series Part 1
The Ultimate Django Series Part 1
2- Prerequisites
3- How to Take this Course
1- Introduction
2- What is Django
3- How the Web Works
4- Setting Up the Development Environment
5- Creating Your First Django Project
6- Using the Integrated Terminal in VSCode
7- Creating Your First App
8- Writing Views
9- Mapping URLs to Views
10- Using Templates
11- Debugging Django Applications in VSCode
12 - Using Django Debug Toolbar
1- Introduction
2- Introduction to Data Modeling
3- Building an E-commerce Data Model
4- Organizing Models in Apps
5- Creating Models
6- Choice Fields
7- Defining One-to-one Relationships
8- Defining a One-to-many Relationship
9- Defining Many-to-many Relationships
10- Resolving Circular Relationships
11- Generic Relationships
1- Introduction
2- Supported Database Engines
3- Creating Migrations
4- Running Migrations
5- Customizing Database Schema
6- Reverting Migrations
7- Installing MySQL
8- Connecting to MySQL
9- Using MySQL in Django
10- Running Custom SQL
11- Generating Dummy Data
1 - Introduction
2- Django ORM
3- Resetting the Database
4- Managers and QuerySets
5- Retrieving Objects
6- Filtering Objects
7- Complex Lookups Using Q Objects
8- Referencing Fields using F Objects
9- Sorting
10- Limiting Results
11- Selecting Fields to Query
12- Deferring Fields
13- Selecting Related Objects
14- Aggregating Objects
15- Annotating Objects
16- Calling Database Functions
17- Grouping Data
18- Working with Expression Wrappers
19- Querying Generic Relationships
20- Custom Managers
21- Understanding QuerySet Cache
22- Creating Objects
23- Updating Objects
24- Deleting Objects
25- Transactions
26- Executing Raw SQL Queries
1- Introduction
2- Setting Up the Admin Site
3- Registering Models
4- Customizing the List Page
5- Adding Computed Columns
6- Selecting Related Objects
7- Overriding the Base QuerySet
8- Providing Links to Other Pages
9- Adding Search to the List Page
10- Adding Filtering to the List Page
11- Creating Custom Actions
12- Customizing Forms
13- Adding Data Validation
14- Editing Children Using Inlines
15- Using Generic Relations
16- Extending Pluggable Apps
17- What's Next