diff options
| author | Jannis Leidel | 2012-08-27 03:37:44 -0700 |
|---|---|---|
| committer | Jannis Leidel | 2012-08-27 03:37:44 -0700 |
| commit | 1432944152d5fa6005e29419dc160a7602a26cee (patch) | |
| tree | 0198cb90ff0088d718b5c3d9e11f1893f37e742f /debug_toolbar/templates | |
| parent | 119874f649e67e04ded3847fc166b9798af26a78 (diff) | |
| parent | a4480a2f810fd8a21da1d2e637d4bfcf10357605 (diff) | |
| download | django-debug-toolbar-1432944152d5fa6005e29419dc160a7602a26cee.tar.bz2 | |
Merge pull request #313 from graingert/master
Use links to static JS and CSS, using {{ STATIC_URL }}
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"> |
