From abc3351bcfd3b2d1aa9c317bc592f96092226ceb Mon Sep 17 00:00:00 2001 From: Rob Hudson Date: Sat, 6 Sep 2008 14:22:25 -0700 Subject: Updating rendering to use Django templates and could possibly be overridden. --- debug_toolbar/templates/debug_toolbar/base.html | 37 +++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 debug_toolbar/templates/debug_toolbar/base.html (limited to 'debug_toolbar/templates') diff --git a/debug_toolbar/templates/debug_toolbar/base.html b/debug_toolbar/templates/debug_toolbar/base.html new file mode 100644 index 0000000..c6469d4 --- /dev/null +++ b/debug_toolbar/templates/debug_toolbar/base.html @@ -0,0 +1,37 @@ + +
+
+ + {% for panel in panels %} +
+

{{ panel.title }}

+ {{ panel.content|safe }} +
+ {% endfor %} +
+
-- cgit v1.2.3