Re: Unclear Debug Message (Bug?) When Invalid Url in Extended Template

2017-01-30 Thread Tim Graham
Thanks. Please create a ticket with details: https://code.djangoproject.com/newticket On Saturday, January 28, 2017 at 11:10:40 PM UTC-5, Connor Boyle wrote: > > Django 1.8 produces a reasonable error message (highlighting the > problematic line in the relevant template file–though the formatting

Re: Unclear Debug Message (Bug?) When Invalid Url in Extended Template

2017-01-28 Thread Connor Boyle
Does not appear to be fixed in Django 1.11a1. On Monday, January 23, 2017 at 7:31:22 PM UTC-6, Tim Graham wrote: > > Could you check with Django 1.11a1? This might be fixed in > https://code.djangoproject.com/ticket/27584. > > On Saturday, January 21, 2017 at 6:02:27 PM UTC-5, Connor Boyle wrote:

Re: Unclear Debug Message (Bug?) When Invalid Url in Extended Template

2017-01-23 Thread Tim Graham
Could you check with Django 1.11a1? This might be fixed in https://code.djangoproject.com/ticket/27584. On Saturday, January 21, 2017 at 6:02:27 PM UTC-5, Connor Boyle wrote: > > I've noticed that when I extend a template that references an invalid url > name, in debug mode, the error message do

Unclear Debug Message (Bug?) When Invalid Url in Extended Template

2017-01-21 Thread Connor Boyle
I've noticed that when I extend a template that references an invalid url name, in debug mode, the error message doesn't highlight the erroneous line in the parent template, but rather shows a section of the child template. For example if "base.html" is just: {% block content %}{% endblock %} P