📌Articles tagged # django

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 | Apr 03, 2026
Django Views Basics
Django Views Basics

This tutorial introduces Django views and explains how they handle user requests and return responses. It covers creating basic views, connecting them to URLs, rendering templates, passing data, and working with different response types, helping beg…

Read More By echrif | Apr 03, 2026
Django URLs and Routing
Django URLs and Routing

This tutorial explains how Django handles URLs and routing by connecting user requests to specific views. It covers defining URL patterns with path(), organizing routes using include(), working with dynamic URL parameters, and using named URLs for b…

Read More By echrif | Apr 02, 2026
Creating Your First Django App
Creating Your First Django App

This tutorial introduces the concept of Django apps and shows how to create and integrate your first app into a project. It covers the app structure, how to register it in INSTALLED_APPS, create basic views and URLs, and render a simple template, he…

Read More By echrif | Apr 02, 2026
Understanding Django Project Structure
Understanding Django Project Structure

This tutorial explains the structure of a Django project and the role of its main files and folders. It helps beginners understand how components like manage.py, settings.py, and urls.py work together, and clarifies the difference between a project …

Read More By echrif | Apr 02, 2026