app/django/forms/__init__.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 21 Feb 2009 15:59:42 +0000
changeset 1431 7e54ef90c210
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Added DynaFields to the dynaform module DynaFields work similar to DynaForms, in that they allow a regular field to be created by supplying a dictionary. The main advantage is that any property can be added, even if the base class doesn't have support for it. Patch by: Sverre Rabbelier

"""
Django validation and HTML form handling.

TODO:
    Default value for field
    Field labels
    Nestable Forms
    FatalValidationError -- short-circuits all other validators on a form
    ValidationWarning
    "This form field requires foo.js" and form.js_includes()
"""

from util import ValidationError
from widgets import *
from fields import *
from forms import *
from models import *