Return a list of all help texts of all configured validators.
(password_validators=None)
| 70 | |
| 71 | |
| 72 | def password_validators_help_texts(password_validators=None): |
| 73 | """ |
| 74 | Return a list of all help texts of all configured validators. |
| 75 | """ |
| 76 | help_texts = [] |
| 77 | if password_validators is None: |
| 78 | password_validators = get_default_password_validators() |
| 79 | for validator in password_validators: |
| 80 | help_texts.append(validator.get_help_text()) |
| 81 | return help_texts |
| 82 | |
| 83 | |
| 84 | def _password_validators_help_text_html(password_validators=None): |