﻿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
6877	"""form.label_for tag"" should apply ""label_suffix"""	David Piccione <run4yourlives@…>	nobody	"When using newforms, the default behavior is is to render a colon within each label entity. This can of course be overridden by using the ""label_suffix"" option on form creation.

However, ""label_tag"" is not consistent with this behavior, and in addition does not respond to the ""label_suffix"" option at all.

{{{
>>> print given_field.label_tag 
<label for=""id_test"">Label Name</label>
>>> new_form = TestForm(label_suffix='|')
>> print new_form.given_field.label_tag
<label for=""id_test"">Label Name</label>
}}}

The label_tag method should obey the ""label_suffix"" option as is consistent with other form rendering techniques that print labels.






 "	Bug	closed	Forms	dev	Normal	wontfix	label_tag, label_suffix	ivanov.maxim@… django@… wagnerluis1982@… Salva Pinyol	Design decision needed	1	1	1	0	0	0
