diff options
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> |
