diff options
| author | Thomas Grainger | 2012-08-20 13:35:46 +0100 | 
|---|---|---|
| committer | Thomas Grainger | 2012-08-20 13:35:46 +0100 | 
| commit | 189668eadd3f47d8c4a03ad2953b25a3a475a127 (patch) | |
| tree | 13966da3eae4b2a2d22d895e83ba66a885740778 /debug_toolbar/templates | |
| parent | 119874f649e67e04ded3847fc166b9798af26a78 (diff) | |
| download | django-debug-toolbar-189668eadd3f47d8c4a03ad2953b25a3a475a127.tar.bz2 | |
use links to static files rather than direct inclusion, Fixes #307
Diffstat (limited to 'debug_toolbar/templates')
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/base.html | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/debug_toolbar/templates/debug_toolbar/base.html b/debug_toolbar/templates/debug_toolbar/base.html index b6ec842..8e91f60 100644 --- a/debug_toolbar/templates/debug_toolbar/base.html +++ b/debug_toolbar/templates/debug_toolbar/base.html @@ -1,9 +1,9 @@  {% load i18n %}  <style type="text/css">  @media print { #djDebug {display:none;}} -{{ css }}  </style> -<script type="text/javascript">{{ js }}</script> +<link rel="stylesheet" href="{{ STATIC_URL }}debug_toolbar/css/toolbar.min.css" type="text/css"> +<script type="text/javascript" src="{{ STATIC_URL }}debug_toolbar/css/toolbar.min.js"></script>  <div id="djDebug" style="display:none;" dir="ltr">  	<div style="display:none;" id="djDebugToolbar">  		<ul id="djDebugPanelList"> | 
