模板渲染期间出错 - 没有模块命名字段 - Url标记

时间:2015-08-01 21:15:39

标签: python django

几个月前我在我的电脑上建立了一个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

1 个答案:

答案 0 :(得分:0)

从堆栈跟踪看来,您正在使用django-recaptcha作为联系表单。但是,当它尝试导入它时,它会失败。你确定,你有正确的installed吗?