﻿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
21653	help_text attribute  into TextField model is not converted to the title attribute	a_mailbox@…	nobody	"`help_text` attribute into a `TextField` model is not converted to the title attribute textarea into html-page!

I fixed this by using  `__init__`  into MyModelForm
{{{
class MyModelForm(ModelForm):
    def __init__(self, *args, **kwargs): # filtered queryset in foreignkey choice field
        super(GenericModelForm, self).__init__(*args, **kwargs)
        for field in self.Meta.model._meta.fields:
             if field.get_internal_type() == ""TextField"":
                 self.fields[field.name].widget.attrs['title'] = field.help_text
}}}
Django 1.6.1"	Bug	new	Forms	1.6	Normal		help_text, TextField		Unreviewed	0	0	0	0	0	0
