내가 좋아하는 최신 http://django-allauth.readthedocs.org/en/latest/#installation장고 - allauth 기본 설정
urls.py
파일의 모양에 따라 시도 내 localhost : 8000/accounts/login /, 페이지를 찾을 수 없음 (404)을 제공합니다. 또한 튜토리얼을 통해 내가 한 일을 두 번 확인했습니다 : http://www.sarahhagstrom.com/2013/09/the-missing-django-allauth-tutorial/하지만 기본 로그인 화면을 표시하려면 무엇을해야할지 모르겠습니다. 어떤 포인터?
편집
여기/프로필 /이 일치하지 않은 계정, 404
Using the URLconf defined in asa.urls, Django tried these URL patterns, in this order:
^admin/
^accounts/^^signup/$ [name='account_signup']
^accounts/^^login/$ [name='account_login']
^accounts/^^logout/$ [name='account_logout']
^accounts/^^password/change/$ [name='account_change_password']
^accounts/^^password/set/$ [name='account_set_password']
^accounts/^^inactive/$ [name='account_inactive']
^accounts/^^email/$ [name='account_email']
^accounts/^^confirm-email/$ [name='account_email_verification_sent']
^accounts/^^confirm-email/(?P<key>\w+)/$ [name='account_confirm_email']
^accounts/^^confirm_email/(?P<key>\w+)/$
^accounts/^^password/reset/$ [name='account_reset_password']
^accounts/^^password/reset/done/$ [name='account_reset_password_done']
^accounts/^^password/reset/key/(?P<uidb36>[0-9A-Za-z]+)-(?P<key>.+)/$ [name='account_reset_password_from_key']
^accounts/^^password/reset/key/done/$ [name='account_reset_password_from_key_done']
^accounts/ ^social/
현재 URL을 찾을 수 없음 페이지에 추가하여 페이지에 오류가 있습니다.
하하, 나는 그것을 시작했습니다./admin 섹션에서 Sites 및 Socialaccount 테이블을 만들 수 있음을 알 수있었습니다. – newbieProgrammer
받은 오류에 대한 자세한 내용을 게시 할 수 있습니까? – Alex
방금 allauth.urls의 URL이 포함되었다고 표시되는 오류가있는 게시물을 업데이트했습니다. – newbieProgrammer