Opened 18 years ago
Last modified 18 years ago
#3948 closed
template parse parse error isn't readable — at Initial Version
Reported by: | Philippe Raoult | Owned by: | Adrian Holovaty |
---|---|---|---|
Component: | Template system | Version: | 0.96 |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Ready for checkin | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | yes |
Easy pickings: | no | UI/UX: | no |
Description
I'm fooling around django trying to do some rapid prototyping and I naively typed the following in my template:
{{ object.other_related_class_set.count() }}
This error is valid in the sense that my template code is bogus, but I had to test line by line to figure out what was wrong. It would be great if the exeption contained the offending line or token!
Traceback included, ask for more details if you need but this is pretty easy to reproduce I think
Traceback (most recent call last):
File "/var/lib/python-support/python2.4/django/core/handlers/base.py" in get_response
- response = callback(request, *callback_args, callback_kwargs)
File "/home/philippe/dev/LLR/djprototype/../djprototype/marques/views.py" in marque_detail
- mytemplate = loader.get_template("marques/marque_detail.html")
File "/var/lib/python-support/python2.4/django/template/loader.py" in get_template
- return get_template_from_string(*find_template_source(template_name))
File "/var/lib/python-support/python2.4/django/template/loader.py" in get_template_from_string
- return Template(source, origin)
File "/var/lib/python-support/python2.4/django/template/init.py" in init
- self.nodelist = compile_string(template_string, origin)
File "/var/lib/python-support/python2.4/django/template/init.py" in compile_string
- return parser.parse()
File "/var/lib/python-support/python2.4/django/template/init.py" in parse
- filter_expression = self.compile_filter(token.contents)
File "/var/lib/python-support/python2.4/django/template/init.py" in compile_filter
- return FilterExpression(token, self)
File "/var/lib/python-support/python2.4/django/template/init.py" in init
- raise TemplateSyntaxError, "Could not parse the remainder: %s" % token[upto:]
TemplateSyntaxError at /marques/details/1/
Could not parse the remainder: ()