-
Урок 1.
00:01:01
Learn Django with Dominic Vacchiano
-
Урок 2.
00:05:31
Intro to Web Servers
-
Урок 3.
00:04:55
What is Django and the MVT Pattern
-
Урок 4.
00:04:49
Why Learn Django
-
Урок 5.
00:02:38
Python Installation
-
Урок 6.
00:02:04
Visual Studio Code Installation
-
Урок 7.
00:01:09
Build Django Projects Quickly from the Browser Using Replit
-
Урок 8.
00:01:40
Git Bash Terminal Installation
-
Урок 9.
00:01:59
Your First Day!
-
Урок 10.
00:03:18
URLs and Views Overview
-
Урок 11.
00:02:19
Django Project Setup
-
Урок 12.
00:05:46
Adding URLs and Views
-
Урок 13.
00:01:59
EXERCISE: About Page Solution
-
Урок 14.
00:05:02
Dynamic URLs Overview: a Look at the Django Docs
-
Урок 15.
00:02:44
Adding Dynamic URL Routing
-
Урок 16.
00:01:52
EXERCISE: Dynamic URLs - Add 2 Numbers Solution
-
Урок 17.
00:05:55
How Django Templates Work
-
Урок 18.
00:04:31
Movies App Project Setup
-
Урок 19.
00:04:25
My Fav Movies Template
-
Урок 20.
00:02:23
EXERCISE: Create About Page Solution
-
Урок 21.
00:05:39
Django Template Variables, Tags, and Filters Overview
-
Урок 22.
00:02:05
Accessing Variables in Django Templates
-
Урок 23.
00:04:30
Listing Out Our Favorite Movies
-
Урок 24.
00:04:37
Django Template Inheritance Overview
-
Урок 25.
00:07:32
Creating Navigation Using Template Inheritance
-
Урок 26.
00:04:27
Adding Image to About Page
-
Урок 27.
00:07:31
What Are Django Models?
-
Урок 28.
00:04:10
Job Board Project and App Setup
-
Урок 29.
00:07:01
Creating Job Posting Model
-
Урок 30.
00:05:43
Adding Our First Job Posting to the Database
-
Урок 31.
00:05:17
Adding New Field to Job Posting Table
-
Урок 32.
00:03:02
Grabbing the Active Job Posting in Our View
-
Урок 33.
00:04:14
Listing Out Active Jobs in Our Template
-
Урок 34.
00:02:24
Adding Filters to the Job Listings to Update Formatting
-
Урок 35.
00:05:20
Job Detail Pages
-
Урок 36.
00:02:41
Handling "Does Not Exist" Error for Job Details
-
Урок 37.
00:04:54
Styling to Our Home And Detail Job Pages
-
Урок 38.
00:03:07
Creating an Admin Super User and First Look at Django Admin Interface
-
Урок 39.
00:03:47
Registering the Job Board Model in the Admin
-
Урок 40.
00:02:31
Making the Job Postings Appear Better in the Admin Section
-
Урок 41.
00:03:11
Creating, Updating and Deleting Job Postings via the Django Admin
-
Урок 42.
00:01:13
The First Project Meeting
-
Урок 43.
00:02:24
Setting Up Our Link Shortener Django Project
-
Урок 44.
00:07:33
Creating Our Link App and Models
-
Урок 45.
00:03:30
Registering Our Link Model with the Admin
-
Урок 46.
00:01:33
Adding Links via the Admin
-
Урок 47.
00:03:14
Links View and URL Setup
-
Урок 48.
00:02:12
Querying the Links from the Database
-
Урок 49.
00:03:55
Making the Home Page Pretty with Tailwind CSS
-
Урок 50.
00:05:40
Adding Link Shortening Redirect Functionality
-
Урок 51.
00:04:57
Intro to Forms: Creating Our First Form
-
Урок 52.
00:04:09
Getting the Input Data from the Form
-
Урок 53.
00:06:51
Using Django Forms to Create Our Link Form
-
Урок 54.
00:03:41
Refactoring to Use Django ModelForms to Create and Save a New Link
-
Урок 55.
00:07:19
Adding Styling to Our Form with Crispy Forms
-
Урок 56.
00:02:57
Exercise: Imposter Syndrome
-
Урок 57.
00:01:19
New Product Pivot
-
Урок 58.
00:03:16
Creating Initial Django Project and LinkPlant App
-
Урок 59.
00:11:37
Setting Up the Profile and Link Models
-
Урок 60.
00:05:43
Registering Our Models with the Admin and Creating Data via the Admin
-
Урок 61.
00:08:14
Listing Out the Links with a Class Based View ListView
-
Урок 62.
00:02:59
Creating Base HTML File and Styling with Tailwind CSS
-
Урок 63.
00:08:10
Creating New Links with the CreateView Class Based View
-
Урок 64.
00:03:24
Installing Crispy Forms and Tailwind Styling
-
Урок 65.
00:04:43
Updating the Links with the UpdateView Class
-
Урок 66.
00:08:59
Creating the Delete View to Remove a Link Using DeleteView Class
-
Урок 67.
00:08:09
Building the Final Profile Page Showcasing Links
-
Урок 68.
00:01:43
Project Demo Day
-
Урок 69.
00:05:44
Initial Project Setup and Creating Trip App
-
Урок 70.
00:11:16
Trip and Notes Data Models
-
Урок 71.
00:05:44
Enabling Images to be Stored in Our Database and Served via Django
-
Урок 72.
00:05:33
Adding Trips via Admin and Creating View to List Out Trips
-
Урок 73.
00:04:55
Using Built In Django Auth App to Setup Our Auth URLs
-
Урок 74.
00:02:55
Looking Under the Django Hood at the Auth App
-
Урок 75.
00:06:43
Adding Our Login Template Page
-
Урок 76.
00:03:42
Creating Logout Page and Checking if User is Logged In or Not
-
Урок 77.
00:08:32
Setting Up User Registration and Filtering Trips for the Logged In User
-
Урок 78.
00:02:55
Adding Styling and Creating Our Base HTML File
-
Урок 79.
00:09:50
Allowing User to Create a New Trip
-
Урок 80.
00:06:31
Viewing a Trip's Details
-
Урок 81.
00:05:22
Creating Notes via Admin and Seeing Notes Details
-
Урок 82.
00:06:58
Listing Out Our Notes with a Class Based View
-
Урок 83.
00:08:20
Adding a Create Note Form Using Class Based View
-
Урок 84.
00:06:14
Updating and Deleting a Note
-
Урок 85.
00:06:10
Updating and Deleting a Trip
-
Урок 86.
00:04:09
Adding the Finishing Touches to the Homepage and Login and Signup Forms
-
Урок 87.
00:01:37
The Final Launch Celebration
-
Урок 88.
00:04:44
Intro to Django REST Framework and Web API
-
Урок 89.
00:07:28
Setting up Django Project for Restaurant
-
Урок 90.
00:09:31
Returning Data in JSON Format
-
Урок 91.
00:12:03
Using Django REST Framework
-
Урок 92.
00:01:18
Thank You