Python UserCreationForm覆盖密码提示\u id\u密码1

Python UserCreationForm覆盖密码提示\u id\u密码1,python,django,django-csrf,Python,Django,Django Csrf,您好,我想覆盖Django在UserCreationForm()中为您生成的密码提示。 这些: 我试图在Meta中覆盖help_文本,但没有成功 help_text = { 'password':{ 'hint1', 'hint2', ... 'hintN' } } help_text = { 'password':{ 'hint1',

您好,我想覆盖Django在UserCreationForm()中为您生成的密码提示。 这些:

我试图在Meta中覆盖help_文本,但没有成功

help_text = {
        'password':{
        'hint1',
        'hint2',
        ...
        'hintN'
        }
        }

help_text = {
        'password':{
        'hint1',
        'hint2',
        ...
        'hintN'
        }
        }