Skip to content

Commit ead8c50

Browse files
committed
Merge pull request #736 from zborboa-google/patch-1
Re-add Alternate row color on profiling panel
2 parents 8331472 + e8f6b0b commit ead8c50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

debug_toolbar/templates/debug_toolbar/panels/profiling.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</thead>
1313
<tbody>
1414
{% for call in func_list %}
15-
<tr class="djDebugProfileRow{% for parent_id in call.parent_ids %} djToggleDetails_{{ parent_id }}{% endfor %}" depth="{{ call.depth }}">
15+
<tr class="{% cycle 'djDebugOdd' 'djDebugEven' %} djDebugProfileRow{% for parent_id in call.parent_ids %} djToggleDetails_{{ parent_id }}{% endfor %}" depth="{{ call.depth }}">
1616
<td>
1717
<div data-padding-left="{{ call.indent }}px">
1818
{% if call.has_subfuncs %}

0 commit comments

Comments
 (0)