标签: django python-2.7 importerror
使用模板时出现此错误:
ImportError: No module named templates.backends.django
如果我使用HttpResponse页面显示,但我使用render函数收到此错误。
HttpResponse
render
views.py:
from django.shortcuts import render def login(request): return render(request,'/test.html')
我正在使用python 2.7.12