1
0
mirror of https://github.com/django/django.git synced 2025-03-13 02:40:47 +00:00
django/django/forms/__init__.py
2010-01-05 03:56:19 +00:00

18 lines
414 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 django.core.exceptions import ValidationError
from widgets import *
from fields import *
from forms import *
from models import *