几个月前我在我的电脑上建立了一个django网站,它起作用,我支持这个项目,现在我正在使用一台新电脑而且它不起作用。该错误涉及URL标记。我在新PC上再次设置了项目,但由于以下原因,它无法加载:
模板渲染期间出错 - 没有名为field的模块
它指向我的基本模板中的{% url 'home' %}
。
这是base.html:<a class="navbar-brand" href="{% url 'home' %}">
Views.py:
def home(request):
context = {}
template = "index.html"
return render(request, template, context)
Urls.py:
urlpatterns = [
url(r'^$', 'projectname.views.home', name='home'),
]
我无法弄清楚为什么我会收到此错误,此代码之前有效。 感谢
完全跟踪(使用单引号): http://pastebin.com/y8mPiamq
完整跟踪(无单引号): http://pastebin.com/KetAnYxR