Django community: RSS
This page, updated regularly, aggregates Django links from the Django community.
-
Yet Another Tutorial for Building a Blog Using Python and Django - Part 1 - Matthew Daly's Blog
-
Yet Another Tutorial for Building a Blog Using Python and Django - Part 1 - Matthew Daly's Blog
-
Doing more with your Django models - SitePoint
-
Doing more with your Django models - SitePoint
-
carljm/django-transaction-hooks
Django database backends with post-transaction-commit hooks. -
Miserlou/django-welcome
Send welcome emails to new users and send notifications about new users to admins. -
How do I prevent fixtures from conflicting with django post_save signal code? - Stack Overflow
up vote 33 down vote accepted I think I figured out a way to do this. There is a 'raw' parameter in the kwargs passed in along with signals so I can replace my test above with this one: if (kwargs.get('created', True) and not kwargs.get('raw', False)): Raw is used when loaddata is running. This seems to do the trick. It is mentioned here: http://code.djangoproject.com/ticket/13299 Would be nice if this was documented: http://docs.djangoproject.com/en/1.2/ref/signals/#django.db.models.signals.post_save -
Using MongoDB with Django
-
Using MongoDB with Django
-
Mozilla’s Security Best Practices « Coffee on the Keyboard
-
Mozilla’s Security Best Practices « Coffee on the Keyboard
-
ptone/django-live
-
ptone/django-live
-
rigoneri/syte
-
rigoneri/syte
-
Deis 0.4.0 – Rollback and Auditing | Deis Blog
-
amazon s3 - django-compressor not setting absolute CSS image paths on Heroku - Stack Overflow
-
amazon s3 - django-compressor not setting absolute CSS image paths on Heroku - Stack Overflow
-
Starting a Django 1.6 Project the Right Way
-
Digging Up Django Class-based Views - 2
Second posto of a series on class-based views in Django 1.5+ -
Deis 0.4.0 – Rollback and Auditing | Deis Blog
-
Deis 0.4.0 – Rollback and Auditing | Deis Blog
-
Python 2.6 Logging Formatter Objects
Formatters have the following attributes and methods. They are responsible for converting a LogRecord to (usually) a string which can be interpreted by either a human or an external system. The base Formatter allows a formatting string to be specified. If none is supplied, the default value of '%(message)s' is used. -
Django Class Based Generic Views (The Good, The Bad, And the Ugly)
-
Learning in Django: Inline Formset - Saving and Updating two forms at the same time