Tutorials
Discover articles, guides, and related topics in this category.
Articles in Tutorials
Read the latest articles published in this section.
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.
Django Sessions and Cookies
Learn how Django uses sessions and cookies to store user data and maintain state across requests. This tutorial covers storing data, managing sessions, handling cookies, and applying best practices for security.
Login Required Pages and Permissions
Learn how to protect pages and control access in Django using login_required, permissions, and user roles. This tutorial covers securing views, using groups, and restricting actions based on authentication and ownership.