diff options
| author | Martin Maney | 2008-11-08 19:48:18 -0600 | 
|---|---|---|
| committer | Rob Hudson | 2008-12-09 14:01:31 -0800 | 
| commit | 47d1a4ff38bc48a6dd54246556434a72c0476bb0 (patch) | |
| tree | 9ecd55f191e8eeb60ae7e2806f9962bcc1956a6c /debug_toolbar/templates | |
| parent | d58f119fc17bd15edee5f3ac783703a8aec534b8 (diff) | |
| download | django-debug-toolbar-47d1a4ff38bc48a6dd54246556434a72c0476bb0.tar.bz2 | |
Added more of the rusage stats in a drop-down panel
(some items were commented out after I was reminded that not all of the original BSD items are supported under Linux)
Diffstat (limited to 'debug_toolbar/templates')
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/panels/timer.html | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/panels/timer.html b/debug_toolbar/templates/debug_toolbar/panels/timer.html new file mode 100644 index 0000000..161507c --- /dev/null +++ b/debug_toolbar/templates/debug_toolbar/panels/timer.html @@ -0,0 +1,7 @@ +<h3>Resource Usage</h3> +<table> +    <colgroup><col width="50%" align="right" /><col width="50%" /></colgroup> +    {% for row in rows %} +	<tr><td align="right">{{ row.1 }}</td><th>{{ row.0 }}</th></tr> +    {% endfor %} +</table>  | 
