Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
How to Tango with Django: A Python Django Tutorial
-
Tango With Django
A beginner's guide to web development with Django 1.5.4. -
Django Round-Up for October 22
-
Two Scoops of Django: Best Practices for Django 1.5
-
Migrating from Django User Profiles to Custom User Models
-
When the database is fast enough — The Iconfinder Blog
-
worthwhile/django_dash_2013
-
grunskis/groupie
-
python - What is the most efficent way to store a list in the Django models? - Stack Overflow
-
Custom Fields in Django - David Cramer's Blog
class SeparatedValuesField(models.TextField): __metaclass__ = models.SubfieldBase def __init__(self, *args, **kwargs): self.token = kwargs.pop('token', ',') super(SeparatedValuesField, self).__init__(*args, **kwargs) def to_python(self, value): if not value: return if isinstance(value, list): return value return value.split(self.token) def get_db_prep_value(self, value): if not value: return assert(isinstance(value, list) or isinstance(value, tuple)) return self.token.join([unicode(s) for s in value]) def value_to_string(self, obj): value = self._get_val_from_obj(obj) return self.get_db_prep_value(value) -
meteozond/django-permanent
-
How to Tango with Django: A Python Django Tutorial | Hacker News
See comments -
ionata / django-bleach — Bitbucket
-
zapier/django-stalefields
-
How to Tango with Django - A Python Django Tutorial
A beginner's guide to web development with Django 1.5.4. -
Randall Degges - Service Oriented Problems
-
How To Tango With Django — How to Tango with Django
-
dmigrations - A simple migrations tool for Django - Google Project Hosting
-
django-evolution - Schema Evolution for the Django Project - Google Project Hosting
-
Kevin Stone
-
Migrating from Django User Profiles to Custom User Models
-
Kevin Stone - Getting Started with Django and AngularJS
-
The Iconfinder Blog | When the database is fast enough
-
How to Tango with Django: A Python Django Tutorial
-
Skipping Test DB Creation