diff options
| author | David Cramer | 2011-03-24 17:50:34 -0700 |
|---|---|---|
| committer | David Cramer | 2011-03-24 17:50:34 -0700 |
| commit | 31b8b0bcb50c41bf0c05f2500f70b8c96ad83123 (patch) | |
| tree | dd00635bef711102777a2d5bdcff552ddb610dab | |
| parent | 7a07b70db07b91be652e55eebee7b04dac01ee64 (diff) | |
| download | django-debug-toolbar-31b8b0bcb50c41bf0c05f2500f70b8c96ad83123.tar.bz2 | |
Dont show colors for details expansion row
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/panels/sql.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql.html b/debug_toolbar/templates/debug_toolbar/panels/sql.html index 6719ed6..7336c54 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/sql.html +++ b/debug_toolbar/templates/debug_toolbar/panels/sql.html @@ -51,8 +51,7 @@ </td> </tr> <tr class="djDebugHoverable {% cycle 'djDebugOdd' 'djDebugEven' %}{% if query.is_slow %} djDebugRowWarning{% endif %}" id="sqlDetails_{{ forloop.counter }}"> - <td class="color"><span style="background-color: rgb({{ query.rgb_color|join:", " }});"> </span></td> - <td></td> + <td colspan="2"></td> <td colspan="4"> <div class="djSQLDetailsDiv" style="display:none;"> <p><strong>Connection:</strong> {{ query.alias }}</p> |
