diff options
| author | Paulo Scardine | 2013-05-23 22:50:33 -0300 | 
|---|---|---|
| committer | Aymeric Augustin | 2013-10-27 10:24:39 +0100 | 
| commit | c710140a15222af2cf31b7579c6a5fedf9a482d5 (patch) | |
| tree | 5ec0c8f997aacdbf24d5d77686f619362d6f5107 /debug_toolbar/templates | |
| parent | ae52695631b409420aa1cf703a94a80c28c652b7 (diff) | |
| download | django-debug-toolbar-c710140a15222af2cf31b7579c6a5fedf9a482d5.tar.bz2 | |
Allow setting arbitrary attributes on the toolbar.
Fix #334.
Diffstat (limited to 'debug_toolbar/templates')
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/base.html | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/base.html b/debug_toolbar/templates/debug_toolbar/base.html index 7b42c84..cce2144 100644 --- a/debug_toolbar/templates/debug_toolbar/base.html +++ b/debug_toolbar/templates/debug_toolbar/base.html @@ -4,7 +4,7 @@  </style>  <link rel="stylesheet" href="{{ STATIC_URL }}debug_toolbar/css/toolbar.min.css" type="text/css" />  <script type="text/javascript" src="{{ STATIC_URL }}debug_toolbar/js/toolbar.min.js"></script> -<div id="djDebug" style="display:none;" dir="ltr"> +<div id="djDebug" style="display:none;" dir="ltr" {{ TOOLBAR_ROOT_TAG_ATTRS|safe }}>  	<div style="display:none;" id="djDebugToolbar">  		<ul id="djDebugPanelList">  			{% if panels %}  | 
