Changeset 5888
- Timestamp:
- 08/14/07 19:19:53 (1 year ago)
- Files:
-
- django/trunk/docs/newforms.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/newforms.txt
r5867 r5888 1484 1484 name = forms.CharField() 1485 1485 url = forms.URLField() 1486 comment = forms.CharField(widget=forms.Text Area)1486 comment = forms.CharField(widget=forms.Textarea) 1487 1487 1488 This would specify a form with a comment that uses a larger Text Area widget,1488 This would specify a form with a comment that uses a larger Textarea widget, 1489 1489 rather than the default TextInput widget. 1490 1490
