|
Revision 6029, 418 bytes
(checked in by russellm, 1 year ago)
|
newforms-admin: Made import visibility of formsets and Media consistent with that of fields, widgets and forms.
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
""" |
|---|
| 2 |
Django validation and HTML form handling. |
|---|
| 3 |
|
|---|
| 4 |
TODO: |
|---|
| 5 |
Default value for field |
|---|
| 6 |
Field labels |
|---|
| 7 |
Nestable Forms |
|---|
| 8 |
FatalValidationError -- short-circuits all other validators on a form |
|---|
| 9 |
ValidationWarning |
|---|
| 10 |
"This form field requires foo.js" and form.js_includes() |
|---|
| 11 |
""" |
|---|
| 12 |
|
|---|
| 13 |
from util import ValidationError |
|---|
| 14 |
from widgets import * |
|---|
| 15 |
from fields import * |
|---|
| 16 |
from forms import * |
|---|
| 17 |
from models import * |
|---|
| 18 |
from formsets import * |
|---|