diff options
| author | James Bennett <ubernostrum@gmail.com> | 2008-07-27 23:23:49 +0000 |
|---|---|---|
| committer | James Bennett <ubernostrum@gmail.com> | 2008-07-27 23:23:49 +0000 |
| commit | fdff91ac2dc91f25d2162ca83e5027ecd733884e (patch) | |
| tree | 9ae98bd1c64c3a6c9e7fa414f80850d11997a6ed /docs | |
| parent | 9a5301ccbc08d5e4f78ae6a8a39330196cdd5f66 (diff) | |
Remove a couple mentions of manipulators (which are no longer relevant) from docs/model-api.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8122 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/model-api.txt | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/model-api.txt b/docs/model-api.txt index 35731b03ff..e20319ae22 100644 --- a/docs/model-api.txt +++ b/docs/model-api.txt @@ -112,7 +112,7 @@ class. Django uses the field class types to determine a few things: * The widget to use in Django's admin interface, if you care to use it (e.g. ``<input type="text">``, ``<select>``). * The minimal validation requirements, used in Django's admin and in - manipulators. + automatically-generated forms. Here are all available field types: @@ -641,9 +641,8 @@ callable it will be called every time a new object is created. ``editable`` ~~~~~~~~~~~~ -If ``False``, the field will not be editable in the admin or via form -processing using the object's ``AddManipulator`` or ``ChangeManipulator`` -classes. Default is ``True``. +If ``False``, the field will not be editable in the admin or via forms +automatically generated from the model class. Default is ``True``. ``help_text`` ~~~~~~~~~~~~~ |
