aboutsummaryrefslogtreecommitdiffstats
path: root/debug_toolbar/templates
diff options
context:
space:
mode:
Diffstat (limited to 'debug_toolbar/templates')
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/templates.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/panels/templates.html b/debug_toolbar/templates/debug_toolbar/panels/templates.html
index 78519c9..01240f7 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/templates.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/templates.html
@@ -1,3 +1,4 @@
+<h4>Template path{{ template_dirs|length|pluralize }}</h4>
{% if template_dirs %}
<ol>
{% for template in template_dirs %}
@@ -7,7 +8,7 @@
{% else %}
<p>None</p>
{% endif %}
-<h3>Template{{ templates|length|pluralize }}</h3>
+<h4>Template{{ templates|length|pluralize }}</h4>
{% if templates %}
<dl>
{% for template in templates %}
@@ -22,7 +23,7 @@
{% else %}
<p>None</p>
{% endif %}
-<h3>Context processor{{ context_processors|length|pluralize }}</h3>
+<h4>Context processor{{ context_processors|length|pluralize }}</h4>
{% if context_processors %}
<dl>
{% for key, value in context_processors.iteritems %}