python - Django | TemplateSyntaxError at /accounts/login/ -
i facing issue django auth.added image , settings.py
[enter image description here][1] templatesyntaxerror @ /accounts /login/ 'socialaccount' not valid tag library: template library socialaccount not found, tried django.templatetags.socialaccount,django.contri[enter image description here][2]b.admin.templatetags.socialaccount,django.contrib.staticfiles.templatetags.socialaccount,crispy_forms.templatetags.socialaccount,allauth.account.templatetags.socialaccount request method: django version: 1.8.8 exception type: templatesyntaxerror exception value: 'socialaccount' not valid tag library: template library socialaccount not found, tried django.templatetags.socialaccount,django.contrib.admin.templatetags.socialaccount,django.contrib.staticfiles.templatetags.socialaccount,crispy_forms.templatetags.socialaccount,allauth.account.templatetags.socialaccount exception location:
make sure have added 'allauth.socialaccount' installed_apps setting.
installed_apps = ( ... 'allauth.socialaccount', ... )
Comments
Post a Comment