Django TemplateSyntaxError

时间:2010-09-27 20:06:47

标签: python django django-templates

我收到一个TemplateSyntaxError,它只发生在我的开发服务器上,但在本地的django测试服务器上工作正常。

这是错误

Caught SyntaxError while rendering: invalid syntax (urls.py, line 1)

和html:

<li><a href="{% url plan.views.profile %}">Plan Details</a></li>

这是个人资料视图:

@login_required
def profile(request):
...

这是追溯:

Traceback:
File "/django/lib/python2.5/django/core/handlers/base.py" in get_response
  100.                     response = callback(request, *callback_args, **callback_kwargs)
File "/django/lib/python2.5/django/contrib/auth/decorators.py" in _wrapped_view
  25.                 return view_func(request, *args, **kwargs)
File "/django/myapp/plan/views.py" in profile
  121.             }, context_instance=RequestContext(request) )
File "/django/lib/python2.5/django/shortcuts/__init__.py" in render_to_response
  20.     return HttpResponse(loader.render_to_string(*args, **kwargs), **httpresponse_kwargs)
File "/django/lib/python2.5/django/template/loader.py" in render_to_string
  186.     return t.render(context_instance)
File "/django/lib/python2.5/django/template/__init__.py" in render
  173.             return self._render(context)
File "/django/lib/python2.5/django/template/__init__.py" in _render
  167.         return self.nodelist.render(context)
File "/django/lib/python2.5/django/template/__init__.py" in render
  796.                 bits.append(self.render_node(node, context))
File "/django/lib/python2.5/django/template/debug.py" in render_node
  72.             result = node.render(context)
File "/django/lib/python2.5/django/template/loader_tags.py" in render
  125.         return compiled_parent._render(context)
File "/django/lib/python2.5/django/template/__init__.py" in _render
  167.         return self.nodelist.render(context)
File "/django/lib/python2.5/django/template/__init__.py" in render
  796.                 bits.append(self.render_node(node, context))
File "/django/lib/python2.5/django/template/debug.py" in render_node
  72.             result = node.render(context)
File "/django/lib/python2.5/django/template/loader_tags.py" in render
  62.             result = block.nodelist.render(context)
File "/django/lib/python2.5/django/template/__init__.py" in render
  796.                 bits.append(self.render_node(node, context))
File "/django/lib/python2.5/django/template/debug.py" in render_node
  72.             result = node.render(context)
File "/django/lib/python2.5/django/template/loader_tags.py" in render
  139.             return self.template.render(context)
File "/django/lib/python2.5/django/template/__init__.py" in render
  173.             return self._render(context)
File "/django/lib/python2.5/django/template/__init__.py" in _render
  167.         return self.nodelist.render(context)
File "/django/lib/python2.5/django/template/__init__.py" in render
  796.                 bits.append(self.render_node(node, context))
File "/django/lib/python2.5/django/template/debug.py" in render_node
  72.             result = node.render(context)
File "/django/lib/python2.5/django/template/defaulttags.py" in render
  253.             return self.nodelist_false.render(context)
File "/django/lib/python2.5/django/template/__init__.py" in render
  796.                 bits.append(self.render_node(node, context))
File "/django/lib/python2.5/django/template/debug.py" in render_node
  72.             result = node.render(context)
File "/django/lib/python2.5/django/template/defaulttags.py" in render
  253.             return self.nodelist_false.render(context)
File "/django/lib/python2.5/django/template/__init__.py" in render
  796.                 bits.append(self.render_node(node, context))
File "/django/lib/python2.5/django/template/debug.py" in render_node
  72.             result = node.render(context)
File "/django/lib/python2.5/django/template/defaulttags.py" in render
  251.             return self.nodelist_true.render(context)
File "/django/lib/python2.5/django/template/__init__.py" in render
  796.                 bits.append(self.render_node(node, context))
File "/django/lib/python2.5/django/template/debug.py" in render_node
  72.             result = node.render(context)
File "/django/lib/python2.5/django/template/defaulttags.py" in render
  366.             url = reverse(self.view_name, args=args, kwargs=kwargs, current_app=context.current_app)
File "/django/lib/python2.5/django/core/urlresolvers.py" in reverse
  350.             *args, **kwargs)))
File "/django/lib/python2.5/django/core/urlresolvers.py" in reverse
  271.         possibilities = self.reverse_dict.getlist(lookup_view)
File "/django/lib/python2.5/django/core/urlresolvers.py" in _get_reverse_dict
  193.             self._populate()
File "/django/lib/python2.5/django/core/urlresolvers.py" in _populate
  173.                     for name in pattern.reverse_dict:
File "/django/lib/python2.5/django/core/urlresolvers.py" in _get_reverse_dict
  193.             self._populate()
File "/django/lib/python2.5/django/core/urlresolvers.py" in _populate
  162.         for pattern in reversed(self.url_patterns):
File "/django/lib/python2.5/django/core/urlresolvers.py" in _get_url_patterns
  243.         patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
File "/django/lib/python2.5/django/core/urlresolvers.py" in _get_urlconf_module
  238.             self._urlconf_module = import_module(self.urlconf_name)
File "/django/lib/python2.5/django/utils/importlib.py" in import_module
  35.     __import__(name)

我检查了我的urls.py文件,没关系。第一行是:

from django.conf.urls.defaults import *

2 个答案:

答案 0 :(得分:3)

在你的urls.py中,通过url函数使用命名url,即。

urlpatterns = patterns('your_app.views',
    url(r'^somehiing/$', 'your_view_function', name='my_view'),
)

然后在您的模板中使用{% url my_view %}

如果它无效,请在此处粘贴您的urls.py - 可能只是一些微小的语法错误。

答案 1 :(得分:0)

这是一种可能性。视图文件的路径似乎是/django/myapp/plan/views.py

File "/django/myapp/plan/views.py" in profile
    121.             }, context_instance=RequestContext(request) )

如果您的python路径配置为包含/django,那么您需要将模板/ html更改为:

{% url myapp.plan.views.profile %}

如果不是这种情况,那么根据bx2的建议,您可能需要检查urls.py文件是否存在语法错误。