diff --git a/docs/ref/signals.txt b/docs/ref/signals.txt
index 4c1db33..35e9588 100644
a
|
b
|
Arguments sent with this signal:
|
375 | 375 | For example, the :mod:`django.contrib.auth` app only prompts to create a |
376 | 376 | superuser when ``interactive`` is ``True``. |
377 | 377 | |
| 378 | Example, in yourapp/management/__init__.py would written like: |
| 379 | |
| 380 | .. code-block:: python |
| 381 | |
| 382 | from django.db.models.signals import post_syncdb |
| 383 | import yourapp.models |
| 384 | |
| 385 | def my_callback(sender, **kwargs): |
| 386 | # Your specific logic here |
| 387 | |
| 388 | post_syncdb.connect(my_callback, sender=yourapp.models) |
| 389 | |
378 | 390 | Request/response signals |
379 | 391 | ======================== |
380 | 392 | |