﻿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
29153	add label attrs to BaseForm	Christoph	nobody	"As the label_tag is already set up to give the label class attributes and label_suffix, it is quite easy to add this to the BaseForm _html_output() 

{{{
class BoundField:
    def label_tag(self, contents=None, attrs=None, label_suffix=None):
}}}


{{{
class BaseForm:
    def _html_output(self, normal_row, error_row, row_ender, help_text_html, errors_on_separate_row):
        # ...
        label = bf.label_tag(label) or ''
}}}
"	New feature	new	Forms	2.0	Normal				Unreviewed	0	0	0	0	0	0
