app/django/forms/__init__.py
author Sverre Rabbelier <srabbelier@gmail.com>
Wed, 11 Feb 2009 23:59:41 +0000
changeset 1274 5f87d9807b77
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Rename TinyMCE to FullTinyMCE and add TinyMCE widget The FullTinyMCE (irony intended) is the full-fledged editor, usefull in editing documents etc. The regular TinyMCE widget can be used for smaller tasks that allow HTML input (such as the description field). 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 *