django-registration-redux无效

时间:2016-04-12 12:31:01

标签: python django

django-registration-redux无效。我已将设置更改为以下内容并运行python manage.py migrate。我还没有弄清楚为什么它没有对数据库做任何事情,这是 Page not found 错误中的建议?

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

enter image description here

1 个答案:

答案 0 :(得分:1)

我只是想如果有人遇到同样的问题,我会将解决方案发布到我的问题中。如果模板未存储在一个文件夹中,则模板base.html需要引用到正确的文件夹,因此它变为{% extends "folder/base.html" %}registration文件夹中有几个html文件,base.html需要重新引用。