Django Foundations for Beginners
Part of Django
Articles in Django Foundations for Beginners
Read the latest articles published in this section.
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 …
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…
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…
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…
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…