﻿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
13401	Forms RadioInput produces invalid HTML	pajatso	nobody	"django.forms RadioInput widget produces invalid HTML. The input tag is rendered inside the label tag which is semantically invalid. It makes it difficult to apply styles to the RadioInput and RadioSelect (multiple radioinputs) widget. The problem can be fixed by modifying the last row from RadioInput widgets __unicode method:

original:
return mark_safe(u'<label%s>%s %s</label>' % (label_for, self.tag(), choice_label))

fixed: 
return mark_safe(u'<label%s>%s</label>%s' % (label_for, choice_label, self.tag()))"	Bug	closed	Forms	1.1	Normal	wontfix		m@…	Design decision needed	0	0	0	0	0	0
