summaryrefslogtreecommitdiff
path: root/django/newforms/__init__.py
blob: f0eca9a950faac5ddb05c74b7461d0635cfaeee3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
"""
Django validation and HTML form handling.

TODO:
    Validation not tied to a particular field
    <select> and validation of lists
    Default value for field
    Field labels
    Nestable Forms
    FatalValidationError -- short-circuits all other validators on a form
    ValidationWarning
    "This form field requires foo.js" and form.js_includes()
"""

from widgets import *
from fields import *
from forms import Form

##########################
# DATABASE API SHORTCUTS #
##########################

def form_for_model(model):
    "Returns a Form instance for the given Django model class."
    raise NotImplementedError

def form_for_fields(field_list):
    "Returns a Form instance for the given list of Django database field instances."
    raise NotImplementedError