What's new in Django community blogs?

Searching within an area with GeoDjango and PostGIS 🌎

Jan. 19, 2025 » » [Archived Version]

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

Read More

Python Package Manager Comparison πŸ“¦

Jan. 19, 2025 » » [Archived Version]

Comparing the different Python package managers in 2023.

Read More

Essential Django packages ❀️

Jan. 19, 2025 » » [Archived Version]

Libraries that I always use with Django.

Read More

Django inclusion tags can modify page context 🀯

Jan. 19, 2025 » » [Archived Version]

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

Read More

The definitive guide to using Django with SQLite in production

Jan. 19, 2025 » » [Archived Version]

Run production Django sites with SQLite to reduce server costs and network latency.

Read More

Marketing for Developers

Jan. 19, 2025 » » [Archived Version]

How to promote your open-source library as a developer to other developers.

Read More

Optimize the Django ORM πŸš€

Jan. 19, 2025 » » [Archived Version]

How to optimize Django ORM queries to improve site performance.

Read More

Stickers

Jan. 19, 2025 » » [Archived Version]

Stickers

Read More

Jan. 19, 2025 » » [Archived Version]

Read More

Django admin tip: Adding links to related objects in change forms

Jan. 17, 2025 » Matthias Kestenholz: Posts about Django » [Archived Version]

Django admin tip: Adding links to related objects in change forms Any issue which came up on the Django Forum and Discord is how to add links to other objects to the Django administration interface. It’s something I’m doing often and I want to share the pattern I’m using. It’s definitely not rocket science and there are probably better ways to do it, but this one works well for me. Method 1: Override the change form template In one project users can be the editor of exactly one organization. Th…

Read More