﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
3120	In newforms, textarea does not get rendered with form	djangotrac2@…	Adrian Holovaty	"I am creating a form with a textarea, but the textarea does not get rendered along with the form.  I apologize if the problem is due to my ignorance of newforms; I am just starting to learn about it.

This is on an svn checkout from about 3 hours ago (Dec 9 2006 around 10:00AM EST)

%python2.4 manage.py shell
Python 2.4.3 (#1, Apr  7 2006, 10:54:33) 
[GCC 4.0.1 (Apple Computer, Inc. build 5250)] on darwin
Type ""help"", ""copyright"", ""credits"" or ""license"" for more information.
(InteractiveConsole)
>>> import django.newforms as newforms
>>> from django.template import Template, Context
>>> class MyForm(newforms.Form):
...     field1 = newforms.CharField()
...     field2 = newforms.Textarea()
... 
>>> t = Template('{{f}}')
>>> t.render(Context({'f': MyForm()}))
'<tr><td>Field1:</td><td><input type=""text"" name=""field1"" /></td></tr>'"	defect	closed	Forms	dev	normal	invalid			Unreviewed	0	0	0	0	0	0
