Made some PEP8 fixes in docs/ref/forms/widgets.txt

Thanks Siecje.
This commit is contained in:
Tim Graham 2014-02-04 06:24:13 -05:00
parent 6e0f1bc06d
commit 867f8fd6c7
1 changed files with 2 additions and 4 deletions

View File

@ -148,11 +148,9 @@ the 'type' attribute to take advantage of the new HTML5 input types. To do
this, you use the :attr:`Widget.attrs` argument when creating the widget::
class CommentForm(forms.Form):
name = forms.CharField(
widget=forms.TextInput(attrs={'class':'special'}))
name = forms.CharField(widget=forms.TextInput(attrs={'class': 'special'}))
url = forms.URLField()
comment = forms.CharField(
widget=forms.TextInput(attrs={'size':'40'}))
comment = forms.CharField(widget=forms.TextInput(attrs={'size': '40'}))
Django will then include the extra attributes in the rendered output: