mirror of
https://github.com/django/django.git
synced 2025-03-10 01:12:53 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7971 bcc190cf-cafb-0310-a4f2-bffc1f526a37
18 lines
396 B
Python
18 lines
396 B
Python
"""
|
|
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 *
|