summaryrefslogtreecommitdiff
path: root/django/contrib/auth/tests/test_forms.py
AgeCommit message (Collapse)Author
2015-02-11Moved contrib.auth tests out of contrib.Tim Graham
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-02-03Fixed #24149 -- Normalized tuple settings to lists.darkryder
2014-12-28Deprecated TEMPLATE_LOADERS.Aymeric Augustin
2014-11-03Fixed typos using https://github.com/vlajos/misspell_fixerVeres Lajos
2014-09-05Limited lines to 119 characters in django/Tim Graham
refs #23395.
2014-08-15Fixed #23162 -- Renamed forms.Field._has_changed() to has_changed().Gabriel Muñumel
2014-07-10Fixed #13147 -- Moved User validation logic from form to model.Yin Jifeng
2014-06-10Fixed #17431 -- Added send_mail() method to PasswordResetForm.Jorge C. Leitão
Credits for the initial patch go to ejucovy; big thanks to Tim Graham for the review.
2014-05-20Removed unused translations in auth testsClaude Paroz
2014-04-26Fix many many typos in comments throughout the codebaseAlex Gaynor
2013-12-23Imported override_settings from its new location.Aymeric Augustin
2013-11-30Removed gender-based pronouns per [c0a2daad78].Tim Graham
2013-10-19Fixed #21291 -- Ensured inactive users cannot reset their passwordsClaude Paroz
Thanks kz26 for the report and the suggested fix. Refs #19758.
2013-10-19Cleaned formatting/comments in PasswordResetFormTestClaude Paroz
2013-10-18Fixed #21287 -- Fixed E123 pep8 warningsAlasdair Nicol
2013-10-17Fixed #21285 -- Fixed E121,E122 pep8 warningsAlasdair Nicol
2013-08-16Combine consecutive with statementsClaude Paroz
Python 2.7 allows to combine several 'with' instructions.
2013-08-05Fixed #20832 -- Enabled HTML password reset emailJustin Michalicek
Added optional html_email_template_name parameter to password_reset view and PasswordResetForm.
2013-08-04Fixed a number of lint warnings, particularly around unused variables.Alex Gaynor
2013-07-31Fixed #12103 -- Added AuthenticationForm.confirm_login_allowed to allow ↵Tim Graham
customizing the logic policy. Thanks ejucovy and lasko for work on the patch.
2013-05-16Fixed #20357 -- Allow empty username field label in `AuthentificationForm`.Mark Huang
2013-04-02Modified auth to work with unittest2 discovery.Preston Timmons