-
Урок 1. 00:02:06Introduction
-
Урок 2. 00:04:59What is Django?
-
Урок 3. 00:01:55The Course Prerequisites
-
Урок 4. 00:03:15What's Inside the Course?
-
Урок 5. 00:03:06Getting the Most out of the Course
-
Урок 6. 00:02:42Choose Your Course Path!
-
Урок 7. 00:01:06Module Introduction
-
Урок 8. 00:06:26Installing Python & Django
-
Урок 9. 00:02:34Creating a Django Project
-
Урок 10. 00:07:55Installing an IDE
-
Урок 11. 00:04:49Analyzing the Created Project
-
Урок 12. 00:05:06Starting a Development Server
-
Урок 13. 00:08:20Django Apps
-
Урок 14. 00:02:28Analyzing the Created Project
-
Урок 15. 00:02:46Module Introduction
-
Урок 16. 00:05:35Creating a New Project
-
Урок 17. 00:05:43What are URLs & Views?
-
Урок 18. 00:13:28Creating a First View & URL
-
Урок 19. 00:03:12Adding More Views & URLs
-
Урок 20. 00:09:36Dynamic Path Segments & Captured Values
-
Урок 21. 00:05:18Path Converters
-
Урок 22. 00:05:21Adding More Dynamic View Logic
-
Урок 23. 00:08:49Redirects
-
Урок 24. 00:10:32The Reverse Function & Named URLs
-
Урок 25. 00:05:49Returning HTML
-
Урок 26. 00:09:38Practicing URLs, Views & Dynamic View Logic
-
Урок 27. 00:04:44Summary
-
Урок 28. 00:03:56Module Introduction
-
Урок 29. 00:14:56Adding & Registering Templates
-
Урок 30. 00:04:17Rendering Templates
-
Урок 31. 00:05:39Template Language & Variable Interpolation
-
Урок 32. 00:01:57Exercise Solution
-
Урок 33. 00:04:20Filters
-
Урок 34. 00:02:30The Django Visual Studio Code Extension
-
Урок 35. 00:08:03Tags & the "for" Tag
-
Урок 36. 00:06:11The URL Tag for Dynamic URLs
-
Урок 37. 00:05:17The "if" Tag for Conditional Content
-
Урок 38. 00:09:39Template Inheritance
-
Урок 39. 00:01:32Exercise Solution
-
Урок 40. 00:09:46Including Partial Template Snippets
-
Урок 41. 00:07:09404 Templates
-
Урок 42. 00:09:14Adding Static Files
-
Урок 43. 00:06:25Adding Global Static Files
-
Урок 44. 00:15:56Adding CSS Styling
-
Урок 45. 00:04:49Summary
-
Урок 46. 00:01:14Module Introduction
-
Урок 47. 00:03:46Setting Up the Starting Project
-
Урок 48. 00:04:27Planning the Project
-
Урок 49. 00:11:18Adding URLs & Views
-
Урок 50. 00:08:12Adding First Templates
-
Урок 51. 00:16:12Template Content & Static Files
-
Урок 52. 00:02:59Adding Images as Static Files
-
Урок 53. 00:10:33Adding the "All Posts" Page & Style
-
Урок 54. 00:04:17Linking the Pages
-
Урок 55. 00:05:40Adding the "Single Post" Page
-
Урок 56. 00:04:11Adding Dummy Data to the "Views" File
-
Урок 57. 00:11:27Special Template Features & Syntax
-
Урок 58. 00:08:45Adding a Single Post Page
-
Урок 59. 00:01:58Adding a 404 Page
-
Урок 60. 00:02:56Module Introduction
-
Урок 61. 00:06:57Different Kinds of Data
-
Урок 62. 00:06:16Understanding Database Options
-
Урок 63. 00:06:39Understanding SQL
-
Урок 64. 00:01:03Django Models
-
Урок 65. 00:09:46Creating a Django Model with Fields
-
Урок 66. 00:06:59Migrations
-
Урок 67. 00:04:36Inserting Data
-
Урок 68. 00:01:53Getting all Entries
-
Урок 69. 00:12:18Updating Models & Migrations
-
Урок 70. 00:02:43Blank vs Null
-
Урок 71. 00:05:50Updating Data
-
Урок 72. 00:01:18Deleting Data
-
Урок 73. 00:03:08Create Instead of Save
-
Урок 74. 00:07:44Querying & Filtering Data
-
Урок 75. 00:04:03"or" Conditions
-
Урок 76. 00:05:44Query Performance
-
Урок 77. 00:07:11Preparing Templates
-
Урок 78. 00:03:00Rendering Queried Data in the Template
-
Урок 79. 00:09:39Rendering the Details Page
-
Урок 80. 00:04:42Model URLs
-
Урок 81. 00:09:05Adding a Slugfield & Overwriting Save
-
Урок 82. 00:06:06Using the Slug & Updating Field Options
-
Урок 83. 00:07:15Aggregation & Ordering
-
Урок 84. 00:03:30Summary
-
Урок 85. 00:02:15Module Introduction
-
Урок 86. 00:05:29Logging Data Into the Admin Panel
-
Урок 87. 00:03:33Adding Models to the Admin Area
-
Урок 88. 00:03:04Configuring Model Fields
-
Урок 89. 00:06:29Configuring the Admin Settings
-
Урок 90. 00:05:06More Config Options
-
Урок 91. 00:01:53Module Introduction
-
Урок 92. 00:03:05Understanding Relationship Types
-
Урок 93. 00:09:03Adding a one-to-many Relation & Migrations
-
Урок 94. 00:06:30Working with Relations in Python Code
-
Урок 95. 00:08:25Cross Model Queries
-
Урок 96. 00:05:07Managing Relations in Admin
-
Урок 97. 00:06:43Adding a one-to-one Relation
-
Урок 98. 00:04:55One-to-one Python Code
-
Урок 99. 00:05:24One-to-one & Admin Config
-
Урок 100. 00:04:46Setting-up many-to-many
-
Урок 101. 00:05:19Using many-to-many in Python
-
Урок 102. 00:02:21Many-to-many in Admin
-
Урок 103. 00:02:38Summary
-
Урок 104. 00:01:58Module Introduction
-
Урок 105. 00:04:04Planning the Data Models
-
Урок 106. 00:07:37Adding a Post Model
-
Урок 107. 00:03:07Author Model & one-to-many
-
Урок 108. 00:01:23Tag Model many-to-many
-
Урок 109. 00:01:16Registering Models for Admin
-
Урок 110. 00:03:14Migrations & Admin Login
-
Урок 111. 00:06:03Adding Data via Admin
-
Урок 112. 00:05:37Configuring the Admin Panel
-
Урок 113. 00:06:38Fetching Posts for Starting Page
-
Урок 114. 00:04:51All Post & Single Post Pages
-
Урок 115. 00:08:35Using Author & Tags Data
-
Урок 116. 00:01:41Summary
-
Урок 117. 00:01:54Module Introduction
-
Урок 118. 00:04:53Starting Setup
-
Урок 119. 00:04:41Adding a Dummy Form
-
Урок 120. 00:10:00Get & Post Requests
-
Урок 121. 00:05:54CSRF Protection
-
Урок 122. 00:09:51Handling Form Submission & Extracting Data
-
Урок 123. 00:06:10Manual Form Validation & the Problems with "that"
-
Урок 124. 00:11:05Using the Django Form Class
-
Урок 125. 00:04:13Validation with Django Forms
-
Урок 126. 00:05:01Customizing the Form Controls
-
Урок 127. 00:05:06Customizing the Rendered HTML
-
Урок 128. 00:09:09Adding Styling
-
Урок 129. 00:07:38Adding More Form Controls
-
Урок 130. 00:08:38Storing Form Data in a Database
-
Урок 131. 00:06:38Introducing Modelforms
-
Урок 132. 00:03:48Configuring the Modelform
-
Урок 133. 00:04:29Saving Data with a Modelform
-
Урок 134. 00:08:42Class Based Views
-
Урок 135. 00:05:54Summary
-
Урок 136. 00:01:08Module Introduction
-
Урок 137. 00:04:22Adding Templates
-
Урок 138. 00:07:57TemplateView
-
Урок 139. 00:05:04Using the TemplateView
-
Урок 140. 00:05:07Showing a Detail Template
-
Урок 141. 00:06:56The ListView
-
Урок 142. 00:03:49DetailView
-
Урок 143. 00:02:24When to Use Which View
-
Урок 144. 00:06:43FormView
-
Урок 145. 00:04:48CreateView
-
Урок 146. 00:01:22Module Introduction
-
Урок 147. 00:01:26Starting Setup
-
Урок 148. 00:07:31Making the File Upload Work
-
Урок 149. 00:04:40Storing Uploaded Files Naive Approach
-
Урок 150. 00:04:39Adding a Form with a Filefield
-
Урок 151. 00:08:45Using Models for File Storage
-
Урок 152. 00:02:20Using an Imagefield
-
Урок 153. 00:02:35Using a CreateView
-
Урок 154. 00:05:11Working with the File Field
-
Урок 155. 00:06:51Serving Uploaded Files
-
Урок 156. 00:01:54Summary
-
Урок 157. 00:00:39Module Introduction
-
Урок 158. 00:02:02Problem Description
-
Урок 159. 00:03:42What are Sessions?
-
Урок 160. 00:02:16Enabling & Configuring Sessions
-
Урок 161. 00:04:32Adding a New View
-
Урок 162. 00:04:04Storing Data in Sessions
-
Урок 163. 00:02:34Which Kind of Data Should be Stored
-
Урок 164. 00:05:34Using Session Data
-
Урок 165. 00:01:13Safely Accessing Session Data
-
Урок 166. 00:01:33Summary
-
Урок 167. 00:02:06Module Introduction
-
Урок 168. 00:06:32Adding an Imagefield to the Post Model
-
Урок 169. 00:06:24Serving Uploaded Files
-
Урок 170. 00:14:04Converting Views to Class Based
-
Урок 171. 00:05:16Adding a Comment Model
-
Урок 172. 00:06:02Adding a Comment Form
-
Урок 173. 00:07:16Styling the Comment Form
-
Урок 174. 00:14:07Handling Comment Form Submission
-
Урок 175. 00:09:40Comment Form Validation Styles
-
Урок 176. 00:05:04Outputting Comments
-
Урок 177. 00:03:14Styling the Comments
-
Урок 178. 00:03:45Comment Admin
-
Урок 179. 00:07:10Read Later Starting Setup
-
Урок 180. 00:13:53Managing Read Later via Session
-
Урок 181. 00:06:31Read Later Page & Styling
-
Урок 182. 00:06:22Finishing the Read Later Feature
-
Урок 183. 00:01:31Module Introduction
-
Урок 184. 00:05:01Deployment Considerations
-
Урок 185. 00:03:53Which Database
-
Урок 186. 00:04:35Django & Web Servers
-
Урок 187. 00:05:44Serving Static Files
-
Урок 188. 00:02:43Choosing a Hosting Provider
-
Урок 189. 00:07:01Getting Started & Revisiting Settings
-
Урок 190. 00:07:36Collecting Static Files
-
Урок 191. 00:01:53Serving Static Files
-
Урок 192. 00:01:14A Note About Migrations
-
Урок 193. 00:05:49Locking in Dependencies
-
Урок 194. 00:05:04Using Environment Variables
-
Урок 195. 00:10:43Deploying with Elastic Beanstalk
-
Урок 196. 00:02:58SSL & Custom Domains
-
Урок 197. 00:18:59Connecting PostgreSQL
-
Урок 198. 00:08:52Serving Static Files Separately
-
Урок 199. 00:17:39Serving Static Files via S3
-
Урок 200. 00:08:27Moving File Uploads to S3
-
Урок 201. 00:01:29Summary
-
Урок 202. 00:03:08Module Introduction
-
Урок 203. 00:06:02What & Why?
-
Урок 204. 00:07:04Setup & Analyzing the Project Folder
-
Урок 205. 00:04:50Working with Apps
-
Урок 206. 00:12:20URLs & Views
-
Урок 207. 00:06:55Getting Started with Templates
-
Урок 208. 00:08:26Static Files & First Steps with the Django Template Language
-
Урок 209. 00:09:40Key Django Template Language Features & Tags
-
Урок 210. 00:08:54Using What we Learned
-
Урок 211. 00:10:45Adding a Detail Page
-
Урок 212. 00:08:14Dynamic Paths
-
Урок 213. 00:06:50Dynamic URLs in Templates
-
Урок 214. 00:12:46Using Template Inheritance
-
Урок 215. 00:05:00Includes
-
Урок 216. 00:03:44What is Data?
-
Урок 217. 00:11:13Getting Started with Models
-
Урок 218. 00:04:42Using the Admin Panel
-
Урок 219. 00:07:52Querying Data
-
Урок 220. 00:11:39Adding Image Upload
-
Урок 221. 00:07:03Serving & Displaying Images
-
Урок 222. 00:08:27Configuring the Admin Area
-
Урок 223. 00:09:53Setting one-to-many Relations
-
Урок 224. 00:09:46many-to-many Relations
-
Урок 225. 00:07:39More Meetup Fields & Outputting Related Data
-
Урок 226. 00:08:22Creating a Modelform
-
Урок 227. 00:10:12Handling Form Submission
-
Урок 228. 00:10:48More on Form Submission & Validation
-
Урок 229. 00:00:00From Modelform to Form
-
Урок 230. 00:08:27Polishing Organizer Email
-
Урок 231. 00:04:00Optimizing URLs
-
Урок 232. 00:01:32Wrap Up
- Категории
- Источники
- Все курсы
- Разделы
- Книги