Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Effective Django — Effective Django 0.1 documentation
-
Django conferences and events | Lanyrd
-
Usage — django-workflows v1.0 alpha documentation
-
Extending templates from a specific Django app | Jonatan Heyman | heyman.info
-
Scaling a Django Application with Memcache | Heroku Dev Center
-
django-configurations — django-configurations dev documentation
Usage patterns There are various configuration patterns that can be implemented with django-configurations. The most common pattern is to have a base class and various subclasses based on the enviroment they are supposed to be used in, e.g. in production, staging and development. Server specific settings For example, imagine you have a base setting class in your settings.py file: from configurations import Settings class Base(Settings): TIME_ZONE = 'Europe/Berlin' class Dev(Base): DEBUG = True TEMPLATE_DEBUG = DEBUG class Prod(Base): TIME_ZONE = 'America/New_York' You can now set the DJANGO_CONFIGURATION environment variable to one of the class names you’ve defined, e.g. on your production server it should be Prod. In bash that would be: export DJANGO_SETTINGS_MODULE=mysite.settings export DJANGO_CONFIGURATION=Prod -
Hackers Gonna Hack
-
Green Unicorn - Welcome
-
Authorize.NET Payment Gateway in Python
-
dyve/django-bootstrap-toolkit
-
edoburu/django-fluent-dashboard · GitHub
-
How do I hide the field label for a HiddenInput widget in Django Admin? - Stack Overflow
-
Homepage | Celery: Distributed Task Queue
-
Gedit as a Django IDE for Linux
-
mk-fg/django-unhosted
A Django implementation of unhosted's remote storage protocol. -
Django | Making queries | Django documentation
-
Django | Writing your first Django app, part 4 | Django documentation
-
Writing your first Django app, part 3 | Django documentation | Django
-
DjangoCheatSheet – Django
-
dmpayton/django-admin-honeypot
A fake Django admin login screen to notify admins of attempted unauthorized access. -
Django snippets: easy set cookie expired time
-
Django | Writing your first Django app, part 2 | Django documentation
-
Django | Writing your first Django app, part 1 | Django documentation
-
Django | Quick install guide | Django documentation
-
Django | Django at a glance | Django documentation