diff options
| author | David Cramer | 2011-03-24 18:02:21 -0700 | 
|---|---|---|
| committer | David Cramer | 2011-03-24 18:02:21 -0700 | 
| commit | 6e2843a9e0d45bf07899192f70c4a10a364d2f41 (patch) | |
| tree | d21be9d97d8897f0c15be95b6ee697a6d2c13084 /debug_toolbar/templates | |
| parent | 31b8b0bcb50c41bf0c05f2500f70b8c96ad83123 (diff) | |
| download | django-debug-toolbar-6e2843a9e0d45bf07899192f70c4a10a364d2f41.tar.bz2 | |
Change how expansion works on queries so hidden select values get displayed
Diffstat (limited to 'debug_toolbar/templates')
| -rw-r--r-- | debug_toolbar/templates/debug_toolbar/panels/sql.html | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql.html b/debug_toolbar/templates/debug_toolbar/panels/sql.html index 7336c54..8560da0 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/sql.html +++ b/debug_toolbar/templates/debug_toolbar/panels/sql.html @@ -50,10 +50,10 @@  				{% endif %}  				</td>  			</tr> -			<tr class="djDebugHoverable {% cycle 'djDebugOdd' 'djDebugEven' %}{% if query.is_slow %} djDebugRowWarning{% endif %}" id="sqlDetails_{{ forloop.counter }}"> +			<tr class="djHiddenByDefault djDebugHoverable {% cycle 'djDebugOdd' 'djDebugEven' %}{% if query.is_slow %} djDebugRowWarning{% endif %}" id="sqlDetails_{{ forloop.counter }}">  				<td colspan="2"></td>  				<td colspan="4"> -					<div class="djSQLDetailsDiv" style="display:none;"> +					<div class="djSQLDetailsDiv">  						<p><strong>Connection:</strong> {{ query.alias }}</p>  						{% if query.stacktrace %}  							<pre>{{ query.stacktrace }}</pre>  | 
