| author | ymh <ymh.work@gmail.com> |
| Tue, 25 May 2010 02:43:45 +0200 | |
| changeset 29 | cc9b7e14412b |
| parent 0 | 0d40e90630ef |
| permissions | -rw-r--r-- |
| 0 | 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 |
||
| 29 | 13 |
from django.core.exceptions import ValidationError |
| 0 | 14 |
from widgets import * |
15 |
from fields import * |
|
16 |
from forms import * |
|
17 |
from models import * |