{{ store_context.toolbar.stats.HistoryPanel.time|escape }}
@@ -10,9 +10,9 @@
{{ store_context.toolbar.stats.HistoryPanel.request_url|truncatechars:100|escape }}
- +
-
-
+ +
+
+
diff --git a/debug_toolbar/templates/debug_toolbar/panels/profiling.html b/debug_toolbar/templates/debug_toolbar/panels/profiling.html
index 4c1c3acd3..a1035fb6f 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/profiling.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/profiling.html
@@ -1,22 +1,22 @@
{% load i18n %}
-
+
-
- {% trans "Call" %}
- {% trans "CumTime" %}
- {% trans "Per" %}
- {% trans "TotTime" %}
- {% trans "Per" %}
- {% trans "Count" %}
+
+ {% trans "Call" %}
+ {% trans "CumTime" %}
+ {% trans "Per" %}
+ {% trans "TotTime" %}
+ {% trans "Per" %}
+ {% trans "Count" %}
-
+
{% for call in func_list %}
-
+
{% if call.has_subfuncs %}
-
-
+
-
{% else %}
{% endif %}
diff --git a/debug_toolbar/templates/debug_toolbar/panels/request.html b/debug_toolbar/templates/debug_toolbar/panels/request.html
index 076d5f74f..2cc882bc1 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/request.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/request.html
@@ -1,17 +1,17 @@
{% load i18n %}
-
{% trans "View information" %}
-
+{% trans "View information" %}
+
-
- {% trans "View function" %}
- {% trans "Arguments" %}
- {% trans "Keyword arguments" %}
- {% trans "URL name" %}
+
+ {% trans "View function" %}
+ {% trans "Arguments" %}
+ {% trans "Keyword arguments" %}
+ {% trans "URL name" %}
-
-
+
+
{{ view_func }}
{{ view_args|pprint }}
{{ view_kwargs|pprint }}
@@ -21,28 +21,28 @@ {% trans "View information" %}
{% if cookies.list or cookies.raw %}
- {% trans "Cookies" %}
+ {% trans "Cookies" %}
{% include 'debug_toolbar/panels/request_variables.html' with variables=cookies %}
{% else %}
{% trans "No cookies" %}
{% endif %}
{% if session.list or session.raw %}
- {% trans "Session data" %}
+ {% trans "Session data" %}
{% include 'debug_toolbar/panels/request_variables.html' with variables=session %}
{% else %}
{% trans "No session data" %}
{% endif %}
{% if get.list or get.raw %}
- {% trans "GET data" %}
+ {% trans "GET data" %}
{% include 'debug_toolbar/panels/request_variables.html' with variables=get %}
{% else %}
{% trans "No GET data" %}
{% endif %}
{% if post.list or post.raw %}
- {% trans "POST data" %}
+ {% trans "POST data" %}
{% include 'debug_toolbar/panels/request_variables.html' with variables=post %}
{% else %}
{% trans "No POST data" %}
diff --git a/debug_toolbar/templates/debug_toolbar/panels/request_variables.html b/debug_toolbar/templates/debug_toolbar/panels/request_variables.html
index 92200f867..cff37715b 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/request_variables.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/request_variables.html
@@ -1,20 +1,20 @@
{% load i18n %}
{% if variables.list %}
-
+
-
- {% trans "Variable" %}
- {% trans "Value" %}
+
+ {% trans "Variable" %}
+ {% trans "Value" %}
-
+
{% for key, value in variables.list %}
-
+
{{ key|pprint }}
{{ value|pprint }}
diff --git a/debug_toolbar/templates/debug_toolbar/panels/settings.html b/debug_toolbar/templates/debug_toolbar/panels/settings.html
index 14763e4e6..ccffb7fd9 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/settings.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/settings.html
@@ -1,14 +1,15 @@
{% load i18n %}
-
-
-
- {% trans "Setting" %}
- {% trans "Value" %}
+
+
+
+
+ {% trans "Setting" %}
+ {% trans "Value" %}
-
+
{% for name, value in settings.items %}
-
+
{{ name }}
{{ value|pprint }}
diff --git a/debug_toolbar/templates/debug_toolbar/panels/signals.html b/debug_toolbar/templates/debug_toolbar/panels/signals.html
index cd9f42c4a..c23af24d6 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/signals.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/signals.html
@@ -1,14 +1,15 @@
{% load i18n %}
-
-
-
- {% trans "Signal" %}
- {% trans "Receivers" %}
+
+
+
+
+ {% trans "Signal" %}
+ {% trans "Receivers" %}
-
+
{% for name, receivers in signals %}
-
+
{{ name|escape }}
{{ receivers|join:", " }}
diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql.html b/debug_toolbar/templates/debug_toolbar/panels/sql.html
index 6080e9f19..255c2289e 100644
--- a/debug_toolbar/templates/debug_toolbar/panels/sql.html
+++ b/debug_toolbar/templates/debug_toolbar/panels/sql.html
@@ -1,7 +1,8 @@
{% load i18n l10n %}
-