📌 Articles tagged # django
Building a Simple Blog with Django
This tutorial guides you through building a complete blog application from scratch using Django. It combines core concepts such as models, views, templates, forms, and CRUD operations, allowing you to create, display, update, and delete posts while …
Django Foundations for Beginners - Complete Summary and QCM Quiz
This resource provides a concise summary of Django fundamentals from Tutorials 1 to 12, covering key concepts like project structure, views, templates, models, migrations, and the admin interface. It also includes a 20-question multiple-choice quiz …
Simple Blog Management System with Django
This project is a simple blog management system built with Django, where administrators can create and manage posts through the admin panel, and users can view posts on a dynamic website. It combines core Django concepts such as models, views, templ…
Passing Data from Views to Templates
This tutorial explains how to pass data from Django views to templates using context dictionaries. It covers sending different types of data (strings, lists, dictionaries, and model objects) and displaying them in templates with variables, loops, an…
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…