What's new in Django community blogs?

Winding Down, Getting Ready

March 26, 2023 » Carlton's latest posts. » [Archived Version]

The week that was 2023 WK12 Next week is my last week as a Django Fellow. I’m looking forward to a break now. I’m looking forward to turning off the notifications. As I keep telling folks, I’m not leaving Django — far from it! — and I’ll be available to be cc-ed or @mentioned as relevant, but for the last five years I’ve seen pretty much every comment, every action, every commit that’s gone on on django/django: I need to turn that down. Eyeballing the calendar, I think I’ll see how I feel af…

Read More

Django News - Django 4.2 released candidate 1 released - Mar 24th 2023

March 24, 2023 » Django News » [Archived Version]

News Django 4.2 release candidate 1 released Django 4.2 release candidate 1 is the final opportunity for you to try out the farrago of new features before Django 4.2 is released. djangoproject.com Want to host DjangoCon Europe 2024? Could your town - or your football stadium, circus tent, private island or city hall - host this wonderful community event? djangoproject.com Welcome to the PyPI Blog Announcin…

Read More

Serve multiple Django sites from one cloud server

March 23, 2023 » » [Archived Version]

Run multiple Django projects on a $6/month Digital Ocean cloud server using CapRover.

Read More

Optimize the Django ORM 🚀

March 23, 2023 » » [Archived Version]

How to optimize Django ORM queries to improve site performance.

Read More

Django inclusion tags can modify page context 🤯

March 23, 2023 » » [Archived Version]

Somehwat surprising behavior that could trip you up and cause confusion while using custom template tags.

Read More

Searching within an area with GeoDjango and PostGIS 🌎

March 23, 2023 » » [Archived Version]

How to search within a certain area with Postgres and Django.

Read More

Prettier URLs with automatic slug generation 🐌

March 23, 2023 » » [Archived Version]

How to create cleaner URLs with slugs in Django.

Read More

Django Reversion + Wagtail = magic 🧙

March 23, 2023 » » [Archived Version]

How to use Django Reversion and Wagtail together to audit changes.

Read More

Unique, but obfuscated URLs in Django

March 23, 2023 » » [Archived Version]

How to create unique, but obfuscated URLs in Django.

Read More

Django: Avoid database queries in template context processors

March 23, 2023 » Adam Johnson » [Archived Version]

Django’s template engine allows you to augment template contexts with context processors. These are functions that take the current request and return a dictionary to be merged into the context: from example.models import HotDog from example.models import HotDogState def hot_dog_stats(request): return { "hot_dogs_eaten": HotDog.objects.filter( state …

Read More