django πŸ‘¨πŸΌβ€πŸ’»

What is Django Used For?

Django is a high-level web framework that enables developers to build robust and scalable web applications quickly and easily using Python. Originally developed in 2003 by a group of developers at the Lawrence Journal-World newspaper in Kansas, Django has since grown into one of the most widely-used web frameworks in the world, powering websites and […]

How to Connect PostgreSQL database to Django

This post is going to show you how to connect the PostgreSQL database to Django. PostgreSQL is one of the databases that are natively supported by Django. When it comes to production development, SQLite (the default Django database engine) is not recommended. In that case, it is recommended to use other production-made database engines that […]

Django Template for loop Tutorial

Django templates provide a powerful set of tools for displaying data on a webpage. Like if statements if you want to display data based on certain conditions. In this post, we are going to learn about the Django template for-loop. The for loop allows you to iterate over a list or queryset of data and […]

How to Use if statement in Django template

Django is a popular web framework for building web applications using the Python programming language. One of the key features of Django is its template system, which allows developers to separate the presentation of a web page from its underlying logic. In this post, we will explore how to use if statements in Django templates […]

How to Use the Django include tag in your Templates files.

In this blog post, we are going to take a look at the usage of the {% include %} tag inside Django templates. What does {% include %} do? In Django, we use the {% include %} tag, as its name suggests, to include one template within another. This allows you to break down a […]

How to Find Remainder in Python

In this post, we will look at various ways to find the remainder of a division operation in Python. The most popular method for finding a remainder in Python is using the modulo operator, %. It is the official Python remainder operator and it returns the remainder of the division of one number by another. […]

Django Migrations Tutorial: How to Make Migrations in Django.

This post will show you how to do migrations in a Django project. Creating migrations and then applying them to the database are two separate steps in the Django migration process. The makemigrations command is used for the former, and the migrate command for the latter. What are Migrations in Django? Django migration is a […]

How to Create Form from Model in Django

This post will show you how to create a form from a model in Django using the ModelForm class. Assume you’re developing a book website where users may add Books with information such as title, synopsis, and cover for each book. You will, of course, need a form for this. But instead of creating the […]

How To Access The Django Admin.

The Django administration site is a wonderful feature unique to the web development framework. It’s one of the Django features that makes it stand out against other web development frameworks like Laravel. The admin allows you to interact with the models you have registered in the admin.py file. Django professionals can go away with using […]

How to Generate a Secret Key in Django

In this post, you’re going to learn about the Django secret key, what it is used for, and how to generate it for your Django project. What is a Django secret key? To perform cryptographic signing, or to create hashes and tokens for sensitive information like csrf tokens, password reset tokens, etc, Django makes use […]

Scroll to top