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