mirror of
https://github.com/Hopiu/django.git
synced 2026-03-31 05:10:24 +00:00
9 lines
278 B
Python
9 lines
278 B
Python
"""
|
|
Django validation and HTML form handling.
|
|
"""
|
|
|
|
from django.core.exceptions import ValidationError # NOQA
|
|
from django.forms.fields import * # NOQA
|
|
from django.forms.forms import * # NOQA
|
|
from django.forms.models import * # NOQA
|
|
from django.forms.widgets import * # NOQA
|