我有这样的目录结构。
myProject
--myApp
--templates
--registration
--login.html
在 myApp.urls.py 我有这样一行
url(r'^login/$', 'django.contrib.auth.views.login')
在设置中
TEMPLATE_DIRS = ()
当我尝试
"http://127.0.0.1:8000/login/"
我有
"TemplateDoesNotExist at /login/
registration/login.html"
错误。在谷歌搜索中,我找到了一些建议,比如将 django-registration 添加到您的应用程序中。
我一定要吗?