1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

[1.10.x] Fixed #26938 -- Fixed invalid HTML in template postmortem on the debug page.

Backport of 348cfccd90 from master
This commit is contained in:
Jon Dufresne
2016-07-22 17:38:35 -07:00
committed by Markus Holtermann
parent ff56d6c023
commit c0026a9d2d
3 changed files with 10 additions and 2 deletions

View File

@@ -726,7 +726,6 @@ TECHNICAL_500_TEMPLATE = ("""
{% for attempt in entry.tried %}
<li><code>{{ attempt.0.loader_name }}</code>: {{ attempt.0.name }} ({{ attempt.1 }})</li>
{% endfor %}
</ul>
{% else %}
<li>This engine did not provide a list of tried templates.</li>
{% endif %}