Completed
1 - Welcome
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Python Django Web Framework - Full Course for Beginners
Automatically move to the next video in the Classroom when playback concludes
- 1 1 - Welcome
- 2 2 - Installing to Get Started
- 3 3 - Setup your Virtual Environment for Django
- 4 4 - Create a Blank Django Project
- 5 5 - Setup Your Code Text Editor
- 6 6 - Settings
- 7 7 - Built-In Components
- 8 8 - Your First App Component
- 9 9 - Create Product Objects in the Python Shell
- 10 10 - New Model Fields
- 11 11 - Change a Model
- 12 12 - Default Homepage to Custom Homepage
- 13 13 - URL Routing and Requests
- 14 14 - Django Templates
- 15 15 - Django Templating Engine Basics
- 16 16 - Include Template Tag
- 17 17 - Rendering Context in a Template
- 18 18 - For Loop in a Template
- 19 19 - Using Conditions in a Template
- 20 20 - Template Tags and Filters
- 21 21 - Render Data from the Database with a Model
- 22 22 - How Django Templates Load with Apps
- 23 23 - Django Model Forms
- 24 24 - Raw HTML Form
- 25 25 - Pure Django Form
- 26 26 - Form Widgets
- 27 27 - Form Validation Methods
- 28 28 - Initial Values for Forms
- 29 29 - Dynamic URL Routing
- 30 30 - Handle DoesNotExist
- 31 31 - Delete and Confirm
- 32 32 - View of a List of Database Objects
- 33 33 - Dynamic Linking of URLs
- 34 34 - Django URLs Reverse
- 35 35 - In App URLs and Namespacing
- 36 36 - Class Based Views - ListView
- 37 37 - Class Based Views - DetailView
- 38 38 - Class Based Views - CreateView and UpdateView
- 39 39 - Class Based Views - DeleteView
- 40 40 - Function Based View to Class Based View
- 41 41 - Raw Detail Class Based View
- 42 42 - Raw List Class Based View
- 43 43 - Raw Create Class Based View
- 44 44 - Form Validation on a Post Method
- 45 45 - Raw Update Class Based View
- 46 46 - Raw Delete Class Based View
- 47 47 - Custom Mixin for Class Based Views