django allauthログインページに問題があります。チュートリアルdjango all-authを完了できましたが、試したときにログインページに問題が発生しましたhttp://localhost/accounts/login/
何も表示されていませんが、空白のページのみです。ログインページがdjango all-authに表示されません
また、このチュートリアルではログインページを作成する方法が示されていないので、それは私が取り組むべき最後のステップだと思います。
私が今までやったはこれです、
settings.py
INSTALLED_APPS = (
'django.contrib.sites',
'allauth',
'allauth.account',
'allauth.socialaccount',
'allauth.socialaccount.providers.google',
)
SOCIALACCOUNT_PROVIDERS = {'google': {'SCOPE': ['email'],
'AUTH_PARAMS': {'access_type': 'online'}
}
}
# Django all auth settings
AUTHENTICATION_BACKENDS = (
# Needed to login by username in Django admin, regardless of `allauth`
'django.contrib.auth.backends.ModelBackend',
# `allauth` specific authentication methods, such as login by e-mail
'allauth.account.auth_backends.AuthenticationBackend',
)
SITE_ID = 1
urls.py
url(r'^accounts/', include('allauth.urls')),
はまた、私はすでにDjangoのadminにソーシャルアプリを追加し、これは必須ですフィールド。
すみません、ありがとうございました。
https://github.com/pennersr/django-allauth/blob/master/allauth/templates/account/login.html:
あなたは今まで何をしましたか?あなたのコードを投稿してください –
runserverはどのポートを使用していますか?あなたは試しましたか?http:// localhost:8000/accounts/login / – ratatoskr