From 3929bf2066e108695546e2dd8db14579a8710126 Mon Sep 17 00:00:00 2001 From: Dave McLain Date: Fri, 22 Apr 2011 01:24:57 -0500 Subject: first pass at a profiler panel --- .../templates/debug_toolbar/panels/profiling.html | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 debug_toolbar/templates/debug_toolbar/panels/profiling.html (limited to 'debug_toolbar/templates') diff --git a/debug_toolbar/templates/debug_toolbar/panels/profiling.html b/debug_toolbar/templates/debug_toolbar/panels/profiling.html new file mode 100644 index 0000000..95af495 --- /dev/null +++ b/debug_toolbar/templates/debug_toolbar/panels/profiling.html @@ -0,0 +1,23 @@ +{% load i18n %} + + + + + + + + + + + + + + + {% for call in func_list %} + + {{ call.as_row }} + + + {% endfor %} + +
{% trans "ncalls" %}{% trans "tottime" %}
({% trans "percall" %})
{% trans "cumtime" %}
({% trans "percall" %})
{% trans "filename:lineno(function)" %}{% trans "toggle" %}
Toggle Subcalls
-- cgit v1.2.3