annotate antispam/apps.py @ 1101:999b32c63cae

Made main menu aligned to right. Since expanded seems broken...
author Brian Neal <bgneal@gmail.com>
date Wed, 06 Jul 2016 19:46:20 -0500
parents 886234943aed
children
rev   line source
bgneal@918 1 from django.apps import AppConfig
bgneal@918 2 import django.contrib.auth.views
bgneal@918 3
bgneal@918 4 from antispam.decorators import log_auth_failures
bgneal@918 5
bgneal@918 6
bgneal@918 7 class AntiSpamConfig(AppConfig):
bgneal@918 8 name = 'antispam'
bgneal@918 9 verbose_name = 'Anti-Spam'
bgneal@918 10
bgneal@918 11 def ready(self):
bgneal@918 12 import antispam.receivers
bgneal@918 13
bgneal@918 14 # Install rate limiting on auth login
bgneal@918 15 django.contrib.auth.views.login = log_auth_failures('Login')(
bgneal@918 16 django.contrib.auth.views.login)