From 01cc28360c71960764569d48358c3320437eb6bd Mon Sep 17 00:00:00 2001 From: Camilo Nova Date: Thu, 23 Nov 2017 17:21:21 -0500 Subject: [PATCH] Removed outdated documentation. Fixes #272 --- docs/index.rst | 3 +-- docs/issues.rst | 33 --------------------------------- 2 files changed, 1 insertion(+), 35 deletions(-) delete mode 100644 docs/issues.rst diff --git a/docs/index.rst b/docs/index.rst index e5ed553..af423c0 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -12,14 +12,13 @@ Contents -------- .. toctree:: - :maxdepth: 2 + :maxdepth: 2 installation configuration usage requirements development - issues captcha Indices and tables diff --git a/docs/issues.rst b/docs/issues.rst deleted file mode 100644 index bc61a58..0000000 --- a/docs/issues.rst +++ /dev/null @@ -1,33 +0,0 @@ -.. _issues: - -Issues -====== - -Not being locked out after failed attempts ------------------------------------------- - -You may find that Axes is not capturing your failed login attempts. It may -be that you need to manually add watch_login to your login url. - -For example, in your urls.py:: - - ... - from my.custom.app import login - from axes.decorators import watch_login - ... - urlpatterns = patterns('', - (r'^login/$', watch_login(login)), - ... - - -Locked out without reason -------------------------- - -It may happen that you have suddenly become locked out without a single failed -attempt. One possible reason is that you are using some custom login form and the -username field is named something different than "username", e.g. "email". This -leads to all users attempts being lumped together. To fix this add the following -to your settings: - - AXES_USERNAME_FORM_FIELD = "email" -