Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
evzijst / dogslow — Bitbucket
Dogslow -- Django Slow Request Watchdog -
django-crm - Open source Django CRM - Google Project Hosting
-
Django 1.6, Python 3 & PostGIS - part 3
-
Let's modernize the way we handle frontend code with Django - Owais Lone
RT @pycoders: Let's modernize the way we handle frontend code with #Django #python -
Django - DreamHost
-
Erik's pony checkup
-
Building a better DatabaseCache for Django on MySQL · Adam’s Tech Blog
-
Terrible choices: MySQL
-
Django — Python Anti-Patterns 0.1 documentation
-
ArunRocks - Python 3 Cheatsheet for Djangonauts
-
TaskBuster Django Tutorial | Marina Mele's site
-
Django vs Flask vs Pyramid: Choosing a Python Web Framework
-
GeoDjango Tutorial | Django documentation | Django
-
Scaling Instagram at AirBnB OpenAir 2015 // Speaker Deck
-
The Django template language | Django documentation | Django
Custom tag and filter libraries¶ Certain applications provide custom tag and filter libraries. To access them in a template, ensure the application is in INSTALLED_APPS (we’d add 'django.contrib.humanize' for this example), and then use the load tag in a template: {% load humanize %} {{ 45000|intcomma }} In the above, the load tag loads the humanize tag library, which then makes the intcomma filter available for use. If you’ve enabled django.contrib.admindocs, you can consult the documentation area in your admin to find the list of custom libraries in your installation. The load tag can take multiple library names, separated by spaces. Example: {% load humanize i18n %} See Custom template tags and filters for information on writing your own custom template libraries. -
Django Memory Error – How-to work with large databases | Harbinger's Hollow
-
Building a better DatabaseCache for Django on MySQL · Adam’s Tech Blog
RT @pycoders: Building a better DatabaseCache for #Django on #MySQL #python -
jschrewe/django-genericadmin
-
jthi3rry/django-silhouette
-
anishmenon/django-realtime
-
Lessons Learned Architecting Realtime Applications | Lincoln Loop
-
FZambia/django-realtime-playground
-
Adding real-time notifications to your Django CBVs with django-pusherable
django-realtime -
petersanchez / django-impersonate — Bitbucket
-
Django settings.py for the real world: Security, absolute paths and multiple environments/files. Switch DEBUG to False, Django behavior differences between DEBUG=True and DEBUG=False, Define ALLOWED_HOSTS, Be careful with the SECRET_KEY value, Define admi