﻿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
31175	Extra spaces in textarea widget template	python2and3developer	nobody	"The template of textarea widget has some extra spaces that are added directily inside the textarea when its rendering on the browser.
https://github.com/django/django/blob/master/django/forms/templates/django/forms/widgets/textarea.html

{{{
<textarea name=""{{ widget.name }}""{% include ""django/forms/widgets/attrs.html"" %}>
{% if widget.value %}{{ widget.value }}{% endif %}</textarea>
}}}

The porposal is to change that to this (only one line, instead of two):
{{{
<textarea name=""{{ widget.name }}""{% include ""django/forms/widgets/attrs.html"" %}>{% if widget.value %}{{ widget.value }}{% endif %}</textarea>
}}}"	Uncategorized	new	Forms	3.0	Normal		template, forms, textarea		Unreviewed	0	0	0	0	0	0
