app/django/forms/__init__.py
author Lennard de Rijk <ljvderijk@gmail.com>
Sat, 28 Feb 2009 17:37:01 +0000 (2009-02-28)
changeset 1564 49a9858c8803
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
For links in a program to take effect there must be an active role. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
"""
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 *