diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-05-12 17:11:19 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-05-12 17:11:19 +0000 |
| commit | 1130f5e6b79588944ee3f72ff9fd698c7b97c9db (patch) | |
| tree | 088084659dc2c2066dd0e42dbd1d23d73c47118d /docs | |
| parent | 6500f3fefacc65f8e3167f80a498ea296b3e6ba2 (diff) | |
Fixed some ReST errors in docs/newforms.txt from [5212]
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5213 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/newforms.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/newforms.txt b/docs/newforms.txt index a7c250be01..123b554bde 100644 --- a/docs/newforms.txt +++ b/docs/newforms.txt @@ -942,7 +942,8 @@ the full list of conversions: ``TimeField`` ``TimeField`` ``URLField`` ``URLField`` with ``verify_exists`` set to the model field's ``verify_exists`` - ``USStateField`` ``CharField with ``widget=USStateSelect`` + ``USStateField`` ``CharField`` with + ``widget=USStateSelect`` (``USStateSelect`` is from ``django.contrib.localflavor.us``) ``XMLField`` ``CharField`` with ``widget=Textarea`` @@ -1094,7 +1095,7 @@ The default field types, as described in the "Field types" table above, are sensible defaults; if you have a ``DateField`` in your model, chances are you'd want that to be represented as a ``DateField`` in your form. But ``form_for_model()`` gives you the flexibility of changing the form field type -for a given model field. You do this by specifying a *formfield callback*. +for a given model field. You do this by specifying a **formfield callback**. A formfield callback is a function that, when provided with a model field, returns a form field instance. When constructing a form, ``form_for_model()`` |
