📌 Articles tagged # django
Writing Custom Middleware in Django
This tutorial teaches how to create custom middleware in Django to handle global request and response processing. It explains the middleware structure, how to register it, and provides practical examples like logging, performance tracking, access co…
Django Middleware Explained
This tutorial explains how Django middleware works as a powerful layer between requests and responses, allowing you to apply global logic across your entire application. It covers the request/response lifecycle, middleware order, built-in components…
Real-World Django Features - Complete Summary and QCM Quiz
Test your understanding of key Django features through a practical quiz covering forms, email integration, user management, content organization, user interactions, notifications, dashboards, and advanced data exploration techniques.
DevArticles Hub: A Full-Stack Django Content Platform
Build a complete Django content platform from scratch where users can register, manage profiles, publish categorized and tagged articles, interact through comments, likes, favorites, and bookmarks, receive notifications, explore content with search/…
Search + Filter + Sort in Django
Learn how to implement powerful search, filtering, and sorting features in Django to improve data exploration and user experience. This tutorial covers GET parameters, query building with the ORM, combining multiple filters, safe sorting, pagination…