summaryrefslogtreecommitdiffstats
path: root/webapp/django/forms/__init__.py
blob: 0d9c68f9e0d80e89e4a0ec2df54f5a5d40d27387 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""
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 *