mirror of
https://github.com/django/django.git
synced 2025-05-04 22:17:34 +00:00
These features are implemented, tracked in tickets, or not necessary. Thanks Bruno Renié.
12 lines
278 B
Python
12 lines
278 B
Python
"""
|
|
Django validation and HTML form handling.
|
|
"""
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from django.core.exceptions import ValidationError
|
|
from django.forms.fields import *
|
|
from django.forms.forms import *
|
|
from django.forms.models import *
|
|
from django.forms.widgets import *
|