diff options
| author | Rob Hudson | 2009-03-21 08:49:19 -0700 | 
|---|---|---|
| committer | Rob Hudson | 2009-03-21 08:49:19 -0700 | 
| commit | 8c64bb0cc82c6129b4ab14ff4cc80880761680d4 (patch) | |
| tree | b71de22fe34bb1ef3f3fbfb900f1f2db7da6f8e2 /debug_toolbar/templates | |
| parent | 2a839fdc3b264f7bcb4af6caed3cf3f593c89308 (diff) | |
| download | django-debug-toolbar-8c64bb0cc82c6129b4ab14ff4cc80880761680d4.tar.bz2 | |
Making CSS classes 'odd' and 'even' more specific.
Diffstat (limited to 'debug_toolbar/templates')
9 files changed, 11 insertions, 11 deletions
diff --git a/debug_toolbar/templates/debug_toolbar/panels/headers.html b/debug_toolbar/templates/debug_toolbar/panels/headers.html index 3ac7fd3..005ffe6 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/headers.html +++ b/debug_toolbar/templates/debug_toolbar/panels/headers.html @@ -8,7 +8,7 @@  	</thead>  	<tbody>  		{% for key, value in headers.iteritems %} -			<tr class="{% cycle 'odd' 'even' %}"> +			<tr class="{% cycle 'djDebugOdd' 'djDebugEven' %}">  				<td>{{ key|escape }}</td>  				<td>{{ value|escape }}</td>  			</tr> diff --git a/debug_toolbar/templates/debug_toolbar/panels/logger.html b/debug_toolbar/templates/debug_toolbar/panels/logger.html index c079065..2117529 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/logger.html +++ b/debug_toolbar/templates/debug_toolbar/panels/logger.html @@ -11,7 +11,7 @@  		</thead>  		<tbody>  			{% for record in records %} -				<tr class="{% cycle 'odd' 'even' %}"> +				<tr class="{% cycle 'djDebugOdd' 'djDebugEven' %}">  					<td>{{ record.level }}</td>  					<td>{{ record.time|date:"h:i:s m/d/Y" }}</td>  					<td>{{ record.message }}</td> diff --git a/debug_toolbar/templates/debug_toolbar/panels/request_vars.html b/debug_toolbar/templates/debug_toolbar/panels/request_vars.html index fe317ae..b7d53ee 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/request_vars.html +++ b/debug_toolbar/templates/debug_toolbar/panels/request_vars.html @@ -13,7 +13,7 @@  		</thead>  		<tbody>  			{% for key, value in cookies %} -				<tr class="{% cycle 'odd' 'even' %}"> +				<tr class="{% cycle 'djDebugOdd' 'djDebugEven' %}">  					<td>{{ key|escape }}</td>  					<td>{{ value|escape }}</td>  				</tr> @@ -38,7 +38,7 @@  		</thead>  		<tbody>  			{% for key, value in session %} -				<tr class="{% cycle 'odd' 'even' %}"> +				<tr class="{% cycle 'djDebugOdd' 'djDebugEven' %}">  					<td>{{ key|escape }}</td>  					<td>{{ value|escape }}</td>  				</tr> @@ -59,7 +59,7 @@  		</thead>  		<tbody>  			{% for key, value in get %} -				<tr class="{% cycle 'odd' 'even' %}"> +				<tr class="{% cycle 'djDebugOdd' 'djDebugEven' %}">  					<td>{{ key|escape }}</td>  					<td>{{ value|join:", "|escape }}</td>  				</tr> diff --git a/debug_toolbar/templates/debug_toolbar/panels/settings_vars.html b/debug_toolbar/templates/debug_toolbar/panels/settings_vars.html index 1d332bf..93f0b34 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/settings_vars.html +++ b/debug_toolbar/templates/debug_toolbar/panels/settings_vars.html @@ -8,7 +8,7 @@  	</thead>  	<tbody>  		{% for var in settings.items|dictsort:"0" %} -			<tr class="{% cycle 'odd' 'even' %}"> +			<tr class="{% cycle 'djDebugOdd' 'djDebugEven' %}">  				<td>{{ var.0 }}</td>  				<td><code>{{ var.1|pprint }}</code></td>  			</tr> diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql.html b/debug_toolbar/templates/debug_toolbar/panels/sql.html index 7de2220..0c8e9c3 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/sql.html +++ b/debug_toolbar/templates/debug_toolbar/panels/sql.html @@ -9,7 +9,7 @@  	</thead>  	<tbody>  		{% for query in queries %} -			<tr class="{% cycle 'odd' 'even' %}"> +			<tr class="{% cycle 'djDebugOdd' 'djDebugEven' %}">  				<td>{{ query.time|floatformat:"2" }}</td>  				<td>  				{% if query.params %} diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html b/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html index dc306f0..a163b25 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html +++ b/debug_toolbar/templates/debug_toolbar/panels/sql_explain.html @@ -16,7 +16,7 @@  	</thead>  	<tbody>  		{% for row in result %} -			<tr class="{% cycle 'odd' 'even' %}"> +			<tr class="{% cycle 'djDebugOdd' 'djDebugEven' %}">  				{% for column in row %}  					<td>{{ column|escape }}</td>  				{% endfor %} diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html b/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html index c1d04ce..e46f41d 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html +++ b/debug_toolbar/templates/debug_toolbar/panels/sql_profile.html @@ -16,7 +16,7 @@  	</thead>  	<tbody>  		{% for row in result %} -			<tr class="{% cycle 'odd' 'even' %}"> +			<tr class="{% cycle 'djDebugOdd' 'djDebugEven' %}">  				{% for column in row %}  					<td>{{ column|escape }}</td>  				{% endfor %} diff --git a/debug_toolbar/templates/debug_toolbar/panels/sql_select.html b/debug_toolbar/templates/debug_toolbar/panels/sql_select.html index 73109ef..17e7d48 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/sql_select.html +++ b/debug_toolbar/templates/debug_toolbar/panels/sql_select.html @@ -17,7 +17,7 @@  	</thead>  	<tbody>  		{% for row in result %} -			<tr class="{% cycle 'odd' 'even' %}"> +			<tr class="{% cycle 'djDebugOdd' 'djDebugEven' %}">  				{% for column in row %}  					<td>{{ column|escape }}</td>  				{% endfor %} diff --git a/debug_toolbar/templates/debug_toolbar/panels/timer.html b/debug_toolbar/templates/debug_toolbar/panels/timer.html index 1b077c6..831ff86 100644 --- a/debug_toolbar/templates/debug_toolbar/panels/timer.html +++ b/debug_toolbar/templates/debug_toolbar/panels/timer.html @@ -12,7 +12,7 @@  	</thead>  	<tbody>  		{% for key, value in rows %} -			<tr class="{% cycle 'odd' 'even' %}"> +			<tr class="{% cycle 'djDebugOdd' 'djDebugEven' %}">  				<td>{{ key|escape }}</td>  				<td>{{ value|escape }}</td>  			</tr>  | 
