HTMX is a lightweight library that works out of the box with Django templates. Features such as validation and pagination can be integrated with ease. In this series, you will create a CRUD application using HTML table and HTMX. While HTML table provides a quick and simple method for developers to structure their content, it is tricky to make HTML form and table work together. Fortunately, just by adding a few additional HTMX attributes, we can select which form inputs we wish to include in our requests.
Django: CRUD inside a table with HTMX — Part 2In the previous tutorial, we learned how to load a list of students. Now, we will learn how to add a student.
Django: CRUD inside a table with HTMX — Part 3In this last part of the series, we will implement the edit and delete functionality
How to set up a simple OCR pipeline with Django on Google CloudSometimes, we have to write and schedule standalone scripts that need to work with our existing Django models. In this tutorial, we will learn about Django management commands and how to schedule them as a job on Google Cloud.