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