Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Django: Getting Started Course, а также все другие курсы, прямо сейчас!
Премиум
  • Урок 1. 00:01:18
    Chapter concepts
  • Урок 2. 00:01:49
    Your first Django app
  • Урок 3. 00:01:07
    Why choose Django?
  • Урок 4. 00:00:37
    Who uses Django?
  • Урок 5. 00:00:44
    Student prerequisites
  • Урок 6. 00:00:25
    Minimum library versions
  • Урок 7. 00:02:09
    Visualizing how Django works
  • Урок 8. 00:02:33
    Mapping URLs to code
  • Урок 9. 00:01:30
    HTML template engine
  • Урок 10. 00:01:03
    Database models
  • Урок 11. 00:00:32
    Built-in user management
  • Урок 12. 00:00:49
    Django Admin
  • Урок 13. 00:00:58
    Django's pluggable architecture
  • Урок 14. 00:01:29
    Topics covered throughout this course
  • Урок 15. 00:01:33
    Intro
  • Урок 16. 00:03:35
    Installing django
  • Урок 17. 00:01:32
    Your first django app
  • Урок 18. 00:03:45
    Apps vs projects
  • Урок 19. 00:01:18
    Creating a Django app
  • Урок 20. 00:01:33
    Add a new app to Django
  • Урок 21. 00:01:55
    Creating a view method
  • Урок 22. 00:02:32
    Connecting a URL to a view
  • Урок 23. 00:01:29
    Why test Django views?
  • Урок 24. 00:05:10
    Writing a 'say hello' view test
  • Урок 25. 00:00:53
    Chapter review
  • Урок 26. 00:03:19
    Chapter concepts
  • Урок 27. 00:02:34
    New app for templates
  • Урок 28. 00:03:46
    Your first Django template
  • Урок 29. 00:01:54
    Rendering the template
  • Урок 30. 00:02:00
    Registering new 'home' URLs
  • Урок 31. 00:01:05
    Test the template in the browser
  • Урок 32. 00:02:47
    Common template tags
  • Урок 33. 00:00:56
    Common template filters
  • Урок 34. 00:01:20
    Django output types
  • Урок 35. 00:01:49
    Configuring static content
  • Урок 36. 00:02:47
    Favicons and static redirects
  • Урок 37. 00:02:21
    Introducing layout pages
  • Урок 38. 00:00:52
    Bootstrap bootcamp
  • Урок 39. 00:04:52
    Creating the shared layout page
  • Урок 40. 00:01:15
    Creating the About page
  • Урок 41. 00:01:32
    Viewing our shiny new About page
  • Урок 42. 00:02:32
    Building the home page with layout
  • Урок 43. 00:01:46
    Unit testing HTML templates
  • Урок 44. 00:02:22
    Chapter review
  • Урок 45. 00:05:15
    Introducing Django's ORM
  • Урок 46. 00:03:14
    Creating the Author model
  • Урок 47. 00:02:26
    Creating the Book model
  • Урок 48. 00:00:39
    Automatic `created` and `updated` dates on the model
  • Урок 49. 00:01:21
    Initializing the database
  • Урок 50. 00:02:29
    The Django REPL
  • Урок 51. 00:00:57
    Explore the query manager in the Django REPL
  • Урок 52. 00:00:45
    Using '.objects.get()' for access by key
  • Урок 53. 00:01:56
    More advanced queries with '.filter()'
  • Урок 54. 00:01:04
    Improved debug info for books
  • Урок 55. 00:00:54
    Comparison queries such as greater than
  • Урок 56. 00:02:12
    Exploring the resulting database
  • Урок 57. 00:00:54
    Introducing data loading fixtures
  • Урок 58. 00:02:12
    Exporting data with 'dumpdata'
  • Урок 59. 00:01:13
    Associating data fixtures with a Django app
  • Урок 60. 00:02:15
    Returning database results in a view
  • Урок 61. 00:01:37
    Different database back-ends: Sqlite, Postgres, etc
  • Урок 62. 00:00:52
    Testing Django ORM code
  • Урок 63. 00:01:01
    Test setup
  • Урок 64. 00:00:37
    Your first Django ORM test
  • Урок 65. 00:01:07
    Calling a view in test with the test client
  • Урок 66. 00:01:39
    Running the 'stringify' test
  • Урок 67. 00:00:49
    Running all tests
  • Урок 68. 00:00:46
    There's more to the ORM
  • Урок 69. 00:01:33
    Chapter review
  • Урок 70. 00:02:16
    Admin intro
  • Урок 71. 00:02:14
    Django users
  • Урок 72. 00:01:23
    Logging into the Admin
  • Урок 73. 00:02:09
    Modifying users in the Admin
  • Урок 74. 00:03:02
    Creating Admin views for your models
  • Урок 75. 00:01:11
    Customizing the display fields in the Admin
  • Урок 76. 00:01:45
    Add computed fields to 'ModelAdmin' classes
  • Урок 77. 00:01:17
    Adding and deleting Books in the Admin
  • Урок 78. 00:01:10
    Filtering records in the Admin
  • Урок 79. 00:00:38
    Improving the Author display in filter list
  • Урок 80. 00:03:10
    Model object metadata
  • Урок 81. 00:01:17
    Referencing Admin URLs
  • Урок 82. 00:05:03
    Improving the Author model's list display
  • Урок 83. 00:01:01
    Testing with the Admin
  • Урок 84. 00:02:23
    Setting up an Admin model test
  • Урок 85. 00:02:06
    Writing an Admin model test
  • Урок 86. 00:02:11
    There is more depth in the Admin
  • Урок 87. 00:01:51
    Chapter concepts
  • Урок 88. 00:02:02
    Create a user via the Admin
  • Урок 89. 00:01:12
    Authentication vs authorization
  • Урок 90. 00:02:22
    People app: an app with users
  • Урок 91. 00:03:09
    Authenticated profile details view
  • Урок 92. 00:00:59
    Adding the profile HTML template
  • Урок 93. 00:01:22
    Register profile URL patterns
  • Урок 94. 00:01:10
    Viewing the profile pages
  • Урок 95. 00:01:02
    Verifying login required checks
  • Урок 96. 00:01:53
    Authorization templates
  • Урок 97. 00:01:07
    Setting update Django contrib auth
  • Урок 98. 00:01:29
    Login template
  • Урок 99. 00:00:50
    Where to go after login
  • Урок 100. 00:03:34
    Creating a nav bar
  • Урок 101. 00:01:01
    Testing login
  • Урок 102. 00:02:53
    Changing passwords
  • Урок 103. 00:01:14
    Password changed success
  • Урок 104. 00:03:05
    Django and email
  • Урок 105. 00:02:06
    Reset email with console output config
  • Урок 106. 00:01:41
    Email contents for reset email
  • Урок 107. 00:00:46
    Password reset done page
  • Урок 108. 00:01:18
    Reset confirm HTML
  • Урок 109. 00:00:29
    Reset success HTML
  • Урок 110. 00:01:37
    Add forgot password to login
  • Урок 111. 00:02:52
    Branded error screens
  • Урок 112. 00:03:31
    Customizing the user model
  • Урок 113. 00:01:50
    Add profile to user object
  • Урок 114. 00:02:29
    Registering a user-created signal callback
  • Урок 115. 00:04:22
    Adding the user profile to Django admin
  • Урок 116. 00:00:47
    Demo: user testing
  • Урок 117. 00:01:06
    Chapter review
  • Урок 118. 00:01:36
    Post introduction
  • Урок 119. 00:01:09
    Field validators and model constraints
  • Урок 120. 00:01:14
    Adding a 'ReviewModel' with field validation
  • Урок 121. 00:00:54
    Adding constraints to the 'ReviewModel'
  • Урок 122. 00:01:31
    Writing an Admin class for the 'ReviewModel'
  • Урок 123. 00:02:42
    Link to the user's reviews in the Django Admin
  • Урок 124. 00:01:56
    Configuring PyCharm with Django's dev server
  • Урок 125. 00:01:13
    Demo: 'ReviewModel' in Django Admin
  • Урок 126. 00:02:45
    Add a view for a book
  • Урок 127. 00:02:42
    HTTP GET and POST methods
  • Урок 128. 00:01:40
    Building a 'ModelForm' based on the 'ReviewModel'
  • Урок 129. 00:07:14
    Writing a view that fills review forms
  • Урок 130. 00:00:47
    Registering named URLs
  • Урок 131. 00:03:16
    Creating the review book template
  • Урок 132. 00:00:21
    Demo: Writing a review
  • Урок 133. 00:01:25
    Replacing hard-coded URLs with named ones
  • Урок 134. 00:03:44
    Testing Django forms
  • Урок 135. 00:01:34
    Reviewing the chapter
  • Урок 136. 00:00:47
    Intro to web uploads
  • Урок 137. 00:01:14
    Uploading images using forms
  • Урок 138. 00:02:08
    Adding an 'ImageField' and configuring media files
  • Урок 139. 00:01:29
    Making the development server host media files
  • Урок 140. 00:01:00
    Creating an upload directory and migrating DB changes
  • Урок 141. 00:01:19
    Using the Django Admin to upload an author's picture
  • Урок 142. 00:01:11
    Server-side filenames
  • Урок 143. 00:05:06
    Writing an upload view
  • Урок 144. 00:00:56
    Url configuration for the upload view
  • Урок 145. 00:03:13
    Upload view template
  • Урок 146. 00:00:39
    Demo: Image upload form
  • Урок 147. 00:03:49
    The trouble with user uploads
  • Урок 148. 00:04:52
    Testing an upload view
  • Урок 149. 00:01:03
    Chapter review
  • Урок 150. 00:00:32
    Intro to commands
  • Урок 151. 00:01:32
    Management commands provided by Django
  • Урок 152. 00:01:10
    Structure of a management command
  • Урок 153. 00:03:45
    Your first management command
  • Урок 154. 00:01:30
    Running the 'authors' command
  • Урок 155. 00:03:59
    Writing management commands with arguments
  • Урок 156. 00:00:49
    Running the 'book' command
  • Урок 157. 00:02:41
    Testing management commands
  • Урок 158. 00:00:56
    Chapter review
  • Урок 159. 00:02:55
    Intro to migrations
  • Урок 160. 00:01:50
    An initial migration script
  • Урок 161. 00:00:56
    Migration and the database
  • Урок 162. 00:01:24
    Adding a column to the 'Song' model
  • Урок 163. 00:01:00
    A second migration script
  • Урок 164. 00:00:41
    Migrating to a specific point including backwards
  • Урок 165. 00:00:31
    Django's migrations table
  • Урок 166. 00:00:45
    More management commands
  • Урок 167. 00:01:25
    Squashing migrations together
  • Урок 168. 00:01:52
    Chapter review
  • Урок 169. 00:00:55
    Intro to deployment
  • Урок 170. 00:00:53
    Deployment considerations
  • Урок 171. 00:02:00
    Parts of a web page are served differently
  • Урок 172. 00:01:15
    Managing static files
  • Урок 173. 00:01:35
    Protecting media files
  • Урок 174. 00:01:37
    Key and secret management
  • Урок 175. 00:01:15
    Hosting example: Opalstack
  • Урок 176. 00:00:50
    Hosting example: Heroku
  • Урок 177. 00:00:32
    Chapter review
  • Урок 178. 00:02:00
    Intro to the libraries
  • Урок 179. 00:00:41
    Installing third party libraries
  • Урок 180. 00:01:58
    Django Admin styling with Grappelli
  • Урок 181. 00:01:31
    Grappelli in action
  • Урок 182. 00:02:31
    REST APIs with Django REST Framework
  • Урок 183. 00:04:34
    Writing DRF code
  • Урок 184. 00:01:01
    DRF browser view
  • Урок 185. 00:03:31
    Django Debug Toolbar
  • Урок 186. 00:02:48
    Using the Debug Toolbar
  • Урок 187. 00:00:25
    Congrats
  • Урок 188. 00:02:47
    New projects and their structure
  • Урок 189. 00:01:28
    Mapping URLs
  • Урок 190. 00:01:27
    View functions
  • Урок 191. 00:01:00
    Template engine
  • Урок 192. 00:01:49
    Data object models
  • Урок 193. 00:01:01
    User management
  • Урок 194. 00:01:58
    Forms and uploads
  • Урок 195. 00:00:34
    Management commands
  • Урок 196. 00:01:25
    Migration and deployment
  • Урок 197. 00:00:49
    Third party libraries
  • Урок 198. 00:00:12
    Conclusion and contact info