March 23, 2023 » » [Archived Version]
Somehwat surprising behavior that could trip you up and cause confusion while using custom template tags.
Read MoreMarch 23, 2023 » » [Archived Version]
How to search within a certain area with Postgres and Django.
Read MoreMarch 23, 2023 » » [Archived Version]
How to promote your open-source library as a developer to other developers.
Read MoreMarch 23, 2023 » » [Archived Version]
How to create cleaner URLs with slugs in Django.
Read MoreMarch 23, 2023 » » [Archived Version]
How to use Django Reversion and Wagtail together to audit changes.
Read MoreMarch 23, 2023 » » [Archived Version]
How to create unique, but obfuscated URLs in Django.
Read MoreMarch 23, 2023 » » [Archived Version]
How to dynamically update URLs with a template tag.
Read MoreMarch 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