Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай HTMX + Django: Modern Python Web Apps, Hold the JavaScript Course, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:00:54
    What is HTML?
  2. Урок 2. 00:01:24
    The HOWL stack
  3. Урок 3. 00:01:12
    Big ideas covered in the course
  4. Урок 4. 00:01:12
    Prerequisites
  5. Урок 5. 00:02:15
    Comparing web frameworks to HTMX
  6. Урок 6. 00:00:38
    Git the course sample code
  7. Урок 7. 00:00:41
    Your Guide: Christopher Trudeau
  8. Урок 8. 00:00:21
    Interview with HTMX creator Carson Gross
  9. Урок 9. 00:00:44
    Intro to HTMX examples
  10. Урок 10. 00:01:09
    HTMX examples with Michael
  11. Урок 11. 00:02:41
    Example: Infinite scroll
  12. Урок 12. 00:03:29
    Example: Active search
  13. Урок 13. 00:02:37
    Example: Lazy loading
  14. Урок 14. 00:03:18
    Example: Bulk update
  15. Урок 15. 00:00:13
    On to the code
  16. Урок 16. 00:01:25
    Surveying the base project
  17. Урок 17. 00:04:11
    Project directory structure
  18. Урок 18. 00:01:57
    View for the home page
  19. Урок 19. 00:01:23
    Category model object
  20. Урок 20. 00:00:49
    View for the category page
  21. Урок 21. 00:01:06
    Video model object
  22. Урок 22. 00:00:56
    Views for feed and player pages
  23. Урок 23. 00:01:50
    Setting up your environment
  24. Урок 24. 00:03:43
    Creating a PyCharm project
  25. Урок 25. 00:00:40
    Packages
  26. Урок 26. 00:02:00
    Tour of the code
  27. Урок 27. 00:01:35
    Adding the form to the template
  28. Урок 28. 00:01:45
    Adding the form to the template
  29. Урок 29. 00:03:10
    Adding post handling to the category view
  30. Урок 30. 00:00:57
    Introducing Click to edit
  31. Урок 31. 00:01:15
    Creating the partials template for the form
  32. Урок 32. 00:03:16
    Inserting the Click to edit link
  33. Урок 33. 00:00:37
    Adding HTMX to the base HTML file
  34. Урок 34. 00:01:28
    The view for the form partial
  35. Урок 35. 00:00:44
    Cancelling the form
  36. Урок 36. 00:01:14
    Moving the click to edit link into a partial
  37. Урок 37. 00:01:08
    Inserting the cancel button
  38. Урок 38. 00:01:02
    Adding the view that cancels the form
  39. Урок 39. 00:01:18
    Concepts review
  40. Урок 40. 00:02:32
    Intro to search as you type
  41. Урок 41. 00:01:15
    Django Q objects
  42. Урок 42. 00:02:32
    Creating the search page template
  43. Урок 43. 00:02:39
    View with hard coded search results
  44. Урок 44. 00:01:55
    Add HTMX attributes to the input tag
  45. Урок 45. 00:02:02
    Installing the django-htmx package
  46. Урок 46. 00:03:16
    Update the search view
  47. Урок 47. 00:01:49
    Deep linking
  48. Урок 48. 00:01:43
    Concepts review
  49. Урок 49. 00:01:52
    Intro to infinite scrolling
  50. Урок 50. 00:02:05
    Modifying the feed template
  51. Урок 51. 00:03:18
    Adapting the feed view
  52. Урок 52. 00:00:57
    Infinite scroll demo
  53. Урок 53. 00:00:20
    Concepts review
  54. Урок 54. 00:00:28
    Mixing frameworks with HTMX intro
  55. Урок 55. 00:02:44
    Boostrap modals
  56. Урок 56. 00:02:33
    The about partial and modal HTML
  57. Урок 57. 00:01:06
    The About view
  58. Урок 58. 00:00:30
    Concepts review modals
  59. Урок 59. 00:00:38
    You're finished
  60. Урок 60. 00:00:31
    Setup
  61. Урок 61. 00:00:46
    Using HTMX
  62. Урок 62. 00:03:33
    HTMX attributes
  63. Урок 63. 00:01:29
    Further investigation