1
0
mirror of https://github.com/django/django.git synced 2025-04-15 12:54:38 +00:00

[1.7.x] Fixed typo in docs/topics/forms/modelforms.txt.

Backport of a15aba66f2fc650f70a791fb7fa880cf85cb1229 from master
This commit is contained in:
wrwrwr 2014-11-27 16:21:28 +01:00 committed by Tim Graham
parent 8819f6f7c9
commit e3ea5d4dad

View File

@ -487,10 +487,9 @@ To specify a custom widget for a field, use the ``widgets`` attribute of the
inner ``Meta`` class. This should be a dictionary mapping field names to widget
classes or instances.
For example, if you want the a ``CharField`` for the ``name``
attribute of ``Author`` to be represented by a ``<textarea>`` instead
of its default ``<input type="text">``, you can override the field's
widget::
For example, if you want the ``CharField`` for the ``name`` attribute of
``Author`` to be represented by a ``<textarea>`` instead of its default
``<input type="text">``, you can override the field's widget::
from django.forms import ModelForm, Textarea
from myapp.models import Author