aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAymeric Augustin2013-11-30 13:57:10 +0100
committerAymeric Augustin2013-11-30 14:00:12 +0100
commitd30452ee1997b3edd0c772e681c2ce816c730384 (patch)
tree813dcd60942c20f9dee4a06072c3e600e1eca979
parent29fca4946b10937a605b71c90ebe5585bca3daea (diff)
downloaddjango-debug-toolbar-d30452ee1997b3edd0c772e681c2ce816c730384.tar.bz2
Fix regression from last week-end's massive renaming.
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/sql_explain.html4
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/sql_profile.html4
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/sql_select.html4
-rw-r--r--debug_toolbar/templates/debug_toolbar/panels/template_source.html4
4 files changed, 8 insertions, 8 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html b/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html
index 6bc2f8d..0d47ada 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html
@@ -1,9 +1,9 @@
{% load i18n %}
-<div class="djPanelTitle">
+<div class="djDebugPanelTitle">
<a class="djDebugClose djDebugBack" href="">{% trans "Back" %}</a>
<h3>{% trans "SQL Explained" %}</h3>
</div>
-<div class="djPanelContent">
+<div class="djDebugPanelContent">
<div class="scroll">
<dl>
<dt>{% trans "Executed SQL" %}</dt>
diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html b/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html
index e154de5..c0d90b4 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html
@@ -1,9 +1,9 @@
{% load i18n %}
-<div class="djPanelTitle">
+<div class="djDebugPanelTitle">
<a class="djDebugClose djDebugBack" href="">{% trans "Back" %}</a>
<h3>{% trans "SQL Profiled" %}</h3>
</div>
-<div class="djPanelContent">
+<div class="djDebugPanelContent">
<div class="scroll">
{% if result %}
<dl>
diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql_select.html b/debug_toolbar/templates/debug_toolbar/panels/sql_select.html
index 6263364..7a57c75 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/sql_select.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/sql_select.html
@@ -1,9 +1,9 @@
{% load i18n %}
-<div class="djPanelTitle">
+<div class="djDebugPanelTitle">
<a class="djDebugClose djDebugBack" href="">{% trans "Back" %}</a>
<h3>{% trans "SQL Selected" %}</h3>
</div>
-<div class="djPanelContent">
+<div class="djDebugPanelContent">
<div class="scroll">
<dl>
<dt>{% trans "Executed SQL" %}</dt>
diff --git a/debug_toolbar/templates/debug_toolbar/panels/template_source.html b/debug_toolbar/templates/debug_toolbar/panels/template_source.html
index 829842c..7dedde3 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/template_source.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/template_source.html
@@ -1,9 +1,9 @@
{% load i18n %}
-<div class="djPanelTitle">
+<div class="djDebugPanelTitle">
<a class="djDebugClose djDebugBack" href="">{% trans "Back" %}</a>
<h3>{% trans 'Template Source' %}: <code>{{ template_name }}</code></h3>
</div>
-<div class="djPanelContent">
+<div class="djDebugPanelContent">
<div class="scroll">
{% if not source.pygmentized %}
<code>{{ source }}</code>