|
Revision 7979, 396 bytes
(checked in by jbronn, 4 months ago)
|
gis: Merged revisions 7921,7926-7928,7938-7941,7945-7947,7949-7950,7952,7955-7956,7961,7964-7968,7970-7978 via svnmerge from trunk.
This includes the newforms-admin branch, and thus is backwards-incompatible. The geographic admin is _not_ in this changeset, and is forthcoming.
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
LastChangedRevision
|
| 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 * |
|---|