﻿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
3122	newforms: {{ form.field.label }} should output <label> when auto_id present	Eric <cephelo@…>	Adrian Holovaty	"{{{
#!python
class MyForm(Form):
    field = CharField(label=""Test"")

def myview(request):
    form = MyForm(auto_id=""id_%s"")
    return render_to_response(""test.html"", {""form"": form})

# test.html
{{ form.field.label }}
}}}

yields ""Test"". As auto_id is set, I would expect this to output <label for=""id_field"">Test:</label>, as form.as_table and other functions already do. If you don't want the <label>, you won't be using auto_id anyway."	defect	closed	Forms	dev	minor	invalid			Unreviewed	0	0	0	0	0	0
