Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Welcome! | Haki Benita
-
Translation | Django documentation | Django
-
GitHub - raphaelm/django-i18nfield: Store internationalized strings in Django models with full forms support
-
GitHub - tatterdemalion/django-nece: Content Translation Framework based on Postgresql's JSONB field
-
GitHub - deschler/django-modeltranslation: Translates Django models using a registration approach.
-
GitHub - django-parler/django-parler: Easily translate "cheese omelet" into "omelette au fromage".
-
GitHub - KristianOellegaard/django-hvad: Painless translations in django, using the regular ORM. Integrates easily into existing projects and apps. Easy convertible from django-multilingual-ng.
-
GitHub - SectorLabs/django-localized-fields: Implementation of localized model fields using PostgreSQL HStore fields.
-
django.db.utils.DataError: invalid value for parameter “TimeZone” | UnMickAble
-
python - how to use UUID in Django - Stack Overflow
-
Model field reference | Django documentation | Django
-
The boring technology behind a one-person Internet company
The tech stack a one-person company. -
Homepage | Celery: Distributed Task Queue
-
In a Django QuerySet, how to filter for "not exists" in a many-to-one relationship - Stack Overflow
Exists is a Subquery subclass that uses an SQL EXISTS statement. In many cases it will perform better than a subquery since the database is able to stop evaluation of the subquery when a first matching row is found. For example, to annotate each post with whether or not it has a comment from within the last day: -
ProTips: using Gunicorn inside a Docker image | Sebest's Nuage ☁️
-
Dockerizing Django with Postgres, Gunicorn, and Nginx | TestDriven.io
-
How to use Django, PostgreSQL, and Docker - William Vincent
-
Move fast and migrate things: how we automated migrations in Postgres
At Benchling, we’re building a platform to help scientists do research. Hundreds of thousands of scientists across academia and enterprise clients use Benchling to store and analyze scientific data… -
Singleton Design Pattern Example: Singleton Models in Django
class SiteSettings(SingletonModel): -
Types for Python HTTP APIs: An Instagram Story - Instagram Engineering
-
How "Export to Excel" Almost Killed Our System | Haki Benita
-
Top 10 Django Mistakes | Toptal
-
djangosnippets: StringField: CharField with no max_length for Postgres
-
Drafting a POC JSONField for SQLite :: laymonage's gsoc blog
-
raphaelm/django-jsonfallback: Use PostgreSQL's and MySQL's JSONField, but fall back to a TextField implementation on other databases