📌 Articles tagged # django

Django Messages Framework
Django Messages Framework

This tutorial introduces Django’s messages framework and shows how to provide user feedback after actions like form submissions, creating, updating, or deleting data. It covers sending different types of messages (success, error, warning, info) from…

Read More By echrif | Avr 06, 2026
Django Template Inheritance and Reusable Layouts
Django Template Inheritance and Reusable Layouts

This tutorial explains how to use Django template inheritance to create clean and reusable layouts for your web application. It covers building a base template, defining content blocks, extending templates, and using {% include %} to reuse component…

Read More By echrif | Avr 06, 2026
CRUD Application in Django
CRUD Application in Django

This tutorial guides you through building a complete CRUD (Create, Read, Update, Delete) application in Django. It shows how to combine models, ModelForms, views, URLs, and templates to manage data dynamically, allowing users to create, view, edit, …

Read More By echrif | Avr 06, 2026
ModelForms in Django
ModelForms in Django

This tutorial explains how to use Django ModelForms to automatically generate forms from models, making it easier to build create and update features. It covers form creation, customization with labels and widgets, validation, and saving data to the…

Read More By echrif | Avr 06, 2026
Django Forms with forms.py
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…

Read More By echrif | Avr 03, 2026