diff options
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/panels/templates.html | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/debug_toolbar/templates/debug_toolbar/panels/templates.html b/debug_toolbar/templates/debug_toolbar/panels/templates.html index dcd5d85..ef1b34d 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/templates.html +++ b/debug_toolbar/templates/debug_toolbar/panels/templates.html @@ -1,5 +1,5 @@  {% load i18n %} -<h4>{% trans 'Template path' %} {{ template_dirs|length|pluralize }}</h4> +<h4>{% trans 'Template path' %}{{ template_dirs|length|pluralize }}</h4>  {% if template_dirs %}  	<ol>  	{% for template in template_dirs %} @@ -28,7 +28,7 @@  	<p>{% trans 'None' %}</p>  {% endif %} -<h4>{% trans 'Context processor' %} {{ context_processors|length|pluralize }}</h4> +<h4>{% trans 'Context processor' %}{{ context_processors|length|pluralize }}</h4>  {% if context_processors %}  <dl>  {% for key, value in context_processors.iteritems %} | 
