Intermediate Django Development

Part of Django

Articles in Intermediate Django Development

Read the latest articles published in this section.

17 articles
File Uploads in Django
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.

Read More By echrif | Apr 08, 2026
Django Model Methods and Properties
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.

Read More By echrif | Apr 08, 2026
Django Slugs and Clean URLs
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.

Read More By echrif | Apr 08, 2026
Django QuerySets and ORM Deep Dive
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…

Read More By echrif | Apr 08, 2026
Generic Class-Based Views in Django
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…

Read More By echrif | Apr 08, 2026