﻿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	Remove newline in Textarea widget.	python2and3developer	nobody	"The template of textarea widget has some extra spaces that are added directly 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 proposal 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>
}}}"	Cleanup/optimization	closed	Forms	master	Normal	wontfix	template, forms, textarea		Unreviewed	0	0	0	0	0	0
