﻿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
9787	PasswordInput widget's max_length wrong output.	patrick	nobody	"Hi, 
when I use this code:

'''#forms.py'''
{{{
class TestForm(forms.Form):
    check_password = forms.CharField(_('Password (verifica)'), widget=forms.PasswordInput)
}}}
'''#template.html'''
{{{
{{ form.as_table }}
}}}
I get this output:
{{{
<form action=""."" method=""post"">
<table>
 <tr>
  <td>
   <label for=""id_nick_name"">Nickname</label>
  </td>
  <td>
   <input id=""id_password"" type=""password"" name=""password"" maxlength=""&lt;django.utils.functional.__proxy__ object at 0x2b5bb4d407d0&gt;"" />
  </td>
 </tr>
</table>
}}}
the part: '''maxlength=""&lt;django.utils.functional.__proxy__ object at 0x2b5bb4d407d0&gt;""''' seems strange, i don't know hot get the correct ouput."		closed	Forms	1.0		invalid			Unreviewed	0	0	0	0	0	0
