Completed
- View the admin site
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Django Crash Course - Introduction to Python Web Development
Automatically move to the next video in the Classroom when playback concludes
- 1 - Introduction
- 2 - Check Python version
- 3 - Create a virtual environment
- 4 - Activate a virtual environment
- 5 - Install a package
- 6 - Deactivate a virtual environment
- 7 - Create a Django project
- 8 - Git and Django
- 9 - Upload project to GitHub
- 10 - Model view template explained
- 11 - Create our first view
- 12 - Create our first template
- 13 - Working with complex data
- 14 - More complex template
- 15 - Intro to models and migrations
- 16 - View the admin site
- 17 - ORM explained
- 18 - Create our first Model
- 19 - Create a migration
- 20 - Add table to admin site
- 21 - Override __str__
- 22 - Working with real data
- 23 - Parameterized URLs
- 24 - Create dynamic links
- 25 - Create a form
- 26 - Delete data
- 27 - 404