Intermediate Django Development
Part of Django
Articles in Intermediate Django Development
Read the latest articles published in this section.
File Uploads in Django
Learn how to handle file and image uploads in Django using FileField and ImageField. This tutorial covers media configuration, upload forms, and displaying uploaded files in templates for real-world applications.
Django Model Methods and Properties
Learn how to enhance your Django models by adding custom methods and properties to handle business logic and computed values. This tutorial shows how to write cleaner, more organized code by moving logic from views into models.
Django Slugs and Clean URLs
Learn how to create clean, readable, and SEO-friendly URLs in Django using slugs. This tutorial covers adding slug fields, generating them automatically, handling duplicates, and using slugs in views and URLs.
Django QuerySets and ORM Deep Dive
Master Django’s QuerySets and ORM to efficiently retrieve, filter, and manipulate database data. This tutorial covers advanced querying techniques, lookups, aggregations, and performance optimization to help you write clean and powerful database que…
Generic Class-Based Views in Django
Learn how to use Django’s Generic Class-Based Views to build CRUD applications quickly and efficiently. This tutorial covers ListView, DetailView, CreateView, UpdateView, and DeleteView, helping you reduce repetitive code and develop dynamic databas…