django-registration-redux is not working. I have changed my settings to the following and run python manage.py migrate
. I haven't got a clue why it hasn't done anything to the database, which is what is suggested in Page not found error?
INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites', # manually added
'django.contrib.messages',
'django.contrib.staticfiles',
# third party apps
'crispy_forms',
'registration', # django-registration-redux
# my apps
'newsletter',
)
# Django-registration-redux settings
ACCOUNT_ACTIVATION_DAYS = 7
REGISTRATION_AUTO_LOGIN = True