📌 Articles tagged # django

Django Admin Interface
Django Admin Interface

This tutorial introduces the Django admin interface and shows how to manage application data through a built-in web dashboard. It covers creating a superuser, registering models, and customizing the admin panel with features like list display, searc…

Read More By echrif | Avr 03, 2026
Database Migrations in Django
Database Migrations in Django

This tutorial explains how Django migrations help keep your database structure synchronized with your models. It covers creating migration files, applying them to the database, understanding the difference between makemigrations and migrate, and man…

Read More By echrif | Avr 03, 2026
Django Models Introduction
Django Models Introduction

This tutorial introduces Django models and explains how they define and manage data in a database. It covers creating models, using different field types, running migrations, and performing basic CRUD operations with Django’s ORM, helping beginners …

Read More By echrif | Avr 03, 2026
Static Files in Django
Static Files in Django

This tutorial explains how to manage and use static files in Django, including CSS, JavaScript, and images. It covers setting up static directories, loading static files in templates, and organizing assets properly, helping beginners enhance the des…

Read More By echrif | Avr 03, 2026
Django Templates Basics
Django Templates Basics

This tutorial introduces Django templates and explains how to create dynamic HTML pages by combining static content with data from views. It covers template variables, filters, loops, conditions, and template inheritance, helping beginners build str…

Read More By echrif | Avr 03, 2026