Fixed #14712 - Add an example for the post_syncdb signal. Thanks Frank Wiles for the patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@15104 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Timo Graham 2010-12-29 15:47:46 +00:00
parent ec38c88dfb
commit 12266059cd
1 changed files with 11 additions and 0 deletions

View File

@ -378,6 +378,17 @@ Arguments sent with this signal:
For example, the :mod:`django.contrib.auth` app only prompts to create a
superuser when ``interactive`` is ``True``.
For example, yourapp/signals/__init__.py could be written like::
from django.db.models.signals import post_syncdb
import yourapp.models
def my_callback(sender, **kwargs):
# Your specific logic here
pass
post_syncdb.connect(my_callback, sender=yourapp.models)
Request/response signals
========================