📌 Articles tagged # django
Django Forms Introduction
This tutorial introduces Django forms and explains how to collect, validate, and process user input in web applications. It covers both basic forms and ModelForms, showing how to handle form submissions, validate data, and save it to the database, m…
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…