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