app/django/test/signals.py
author Sverre Rabbelier <srabbelier@gmail.com>
Thu, 12 Feb 2009 20:14:17 +0000
changeset 1282 005be2cf889d
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Do not attempt to render a field if it is disabled This is required to make it possible to disable fields dynamically. Patch by: Sverre Rabbelier

from django.dispatch import Signal

template_rendered = Signal(providing_args=["template", "context"])