📌Articles tagged # django
Django Forms with forms.py
This tutorial introduces Django forms using forms.py, focusing on how to build and manage forms manually with full control. It covers defining form fields, customizing labels and widgets for better user interfaces, handling submitted data, using cle…
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…