📌 Articles tagged # django
Intermediate Django Development - Complete Summary and QCM Quiz
This section provides a concise overview of the key topics covered, including class-based views, ORM, model relationships, authentication, permissions, sessions, pagination, search, context processors, and custom template tools. It helps you quickly…
MofidBoard Django Project
MofidBoard is a complete Django mini-platform that demonstrates how to build a modern web application from scratch. It includes user authentication, profiles, article creation and management, categories and tags, file uploads, search functionality, …
Custom Template Filters and Tags in Django
Learn how to create custom template filters and tags in Django to extend template functionality. This tutorial covers building reusable formatting tools, adding logic to templates, and improving code organization.
Django Context Processors
Learn how to use Django context processors to share global data across all templates. This tutorial covers creating custom processors, registering them in settings, and simplifying your views by avoiding repetitive context data.
Search Functionality in Django
Learn how to build search functionality in Django using QuerySets, icontains, and forms. This tutorial covers filtering data, handling user queries, and combining search with pagination for better user experience.