remove django registration stuff, unused/desired

This commit is contained in:
2021-10-26 22:25:08 -05:00
parent 739d3fa2b7
commit 76e5546bcb
6 changed files with 53 additions and 60 deletions

View File

@@ -41,7 +41,6 @@ INSTALLED_APPS = (
'django_extensions',
'adminplus',
'bootstrap3',
'registration',
'rest_framework',
'countdown',
'dispatch',
@@ -148,12 +147,6 @@ BOOTSTRAP3 = {
}
# registration
LOGIN_REDIRECT_URL = reverse_lazy('index')
ACCOUNT_ACTIVATION_DAYS = 7
REGISTRATION_AUTO_LOGIN = True
# IRC module stuff
# karma

View File

@@ -21,6 +21,5 @@ urlpatterns = [
url(r'^races/', include('races.urls')),
url(r'^weather/', include('weather.urls')),
url(r'^accounts/', include('registration.backends.default.urls')),
url(r'^admin/', admin.site.urls),
]