2 followers
A collection of articles to help developers get started with the Django web framework.
What is the best way to add JavaScript to a Django project? It is often a question of how much JavaScript are you prepared to add to your frontend. At...
The language of Django is Python, but the language of relational databases is SQL. So how do you manage your application’s database without having to...
When you take a course in Vue, you're normally taught how to build a Single Page Application (SPA). This is where you build an interactive user...
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...
User registration with Django REST Framework (DRF) can be challenging because you don't have the advantage of Django's built in user model. I am going...
What makes Django different to other web frameworks is it includes a model for users. This means it is possible to add user registration to your...