mirror of
https://github.com/Hopiu/django.git
synced 2026-05-26 07:43:51 +00:00
9 lines
238 B
Python
9 lines
238 B
Python
"""
|
|
Django validation and HTML form handling.
|
|
"""
|
|
|
|
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 *
|