The Django Developer’s Guide to Vite
The easy way to add JavaScript to your Django projects.
The easy way to add JavaScript to your Django projects.
You don’t have to build a separate app to use Vue with Django
Django ORM (Object Relational Mapper) allows your application to modify your database with Python. This means you won’t have to write any SQL to manage
This is a beginner friendly Django tutorial to create a To Do list app. This will teach you how to start a Django project from
New to Django? Get your project up and running.
Welcome to Part 2 of my To-Do list tutorial series. In Part 1, we set up a Django project with a database and created a
Welcome to Part 3 of my tutorial series to build a To Do list app. In the previous tutorial we added a model. This means
Welcome to Part 4 of my tutorial series on building a To Do List app with Django. In the previous tutorial, we added views to
Welcome to Part 5 of my tutorial series on creating a To Do list app with Django. In Parts 1 to 4, we focused on
In the previous tutorials, we have been building a To Do list app. We created a page that lists all the tasks and added a
Welcome to Part 7 of my tutorial series on how to create a To Do List app with Django. The tutorial series so far has
In this tutorial, we are going to implement a basic filter. This will work by specifying how we want to filter our tasks in the
Writing tests takes effort, but will save you time in the long-run.
Learn Django for free with my list of recommended resources for all levels.
From creating a superuser to basic customisation of the admin panel, learn how to get started with Django Admin.
Foreign Keys are a type of field used to create links between tables of a relational database. Learn how to use them in your Django projects.
If you want to create a migration but want to assign a custom value to each of the existing rows, you can add custom Python to your migration.
Django models are used to manage your applications database without writing SQL.
Learn how to link your Django templates to your CSS files.
Apps are Django’s preferred way of structuring projects. It encourages developers to organise their code by domain.
What is a Many-to-Many field? A many-to-many field is a type of field used to establish a link between two database tables where one row
How to quickly reset your Django Admin password without opening the browser.