Django TemplateDoesNotExist admin/login.html

后端 未结 5 768
独厮守ぢ
独厮守ぢ 2021-01-21 19:04

I am working with django 1.4. And this error appeared:

TemplateDoesNotExist at /admin/ admin/login.html

I tried to reinstall django, but i did

5条回答
  •  暖寄归人
    2021-01-21 19:45

    I got that same error trying to use the default built-in login functionality.

    My settings.py has the default settings, 'django.contrib.admin' is in the INSTALLED_APPS section of my settings.py file, as suggested by sean.

    Elaborating on Tim's answer, I believe that we are refering to a missing template.

    See the docs at https://docs.djangoproject.com/en/1.7/topics/auth/default/#django.contrib.auth.views.login: "It’s your responsibility to provide the html for the login template, called registration/login.html by default."

提交回复
热议问题