﻿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
11301	Fields using SplitHiddenDateTimeWidget are still rendered with their label	David Gouldin	nobody	"Using the following form class:

{{{
from django import forms
class TestForm(forms.Form):
    test_field = forms.SplitDateTimeField(widget=forms.widgets.SplitHiddenDateTimeWidget)
}}}

an instance of this class will render with a label for test_field:

{{{
>>> f = TestForm()
>>> f.as_table()
u'<tr><th><label for=""id_test_field_0"">Test field:</label></th><td><input type=""hidden"" name=""test_field_0"" id=""id_test_field_0"" /><input type=""hidden"" name=""test_field_1"" id=""id_test_field_1"" /></td></tr>'
}}}

"		closed	Forms	1.0		fixed		dgouldin@…	Accepted	1	0	0	0	0	0
