aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenneth Belitzky2009-10-10 01:59:47 +0800
committerRob Hudson2009-10-17 10:20:25 +0800
commit059582382346de5d261f1a7990f6f7a46d6af2f8 (patch)
tree5dd85e635f6eb77011230c7b72ab602b93d72d12
parente43d66aec655433705fd9651582781dc32ef2ab0 (diff)
downloaddjango-debug-toolbar-059582382346de5d261f1a7990f6f7a46d6af2f8.tar.bz2
fixed space on titles
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/templates.html4
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 %}